1

PHPはそれを訴えます

PHP Parse error:  syntax error, unexpected T_CONSTANT_ENCAPSED_STRING, 
expecting ')' in /home/edler2/www/blog/application/config/database.php on line 74

それは明らかに間違っているように思えますが、今は行き詰まっています。

../config/database.php は次のようになります。

70  'mysql' => array(
71      'driver'   => 'mysql',
72      'host'     => 'localhost',
73      'database' => 'blogtest' 
74      'username' => 'root',
75      'password' => 'xxxxx',
76      'charset'  => 'utf8',
77      'prefix'   => '',
78  ),
4

1 に答える 1

4
73      'database' => 'blogtest' ,
                                 ^ this comma is missing.
于 2012-11-28T20:04:30.943 に答える