You forgot to close your array at line 60.
Change:
Quote:
$dbs = array(
/*"DB_NAME" => "a3891127_clasifi", // The name of the database that this program will use
"DB_HOST" => "mysql13.000webhost.com", // The host that this database is on. Ex. localhost or mysql.yoursite.com or 65.29.231.91
"DB_USER" => "a3891127_rodrifr", // The username setup to use this database. Must have Read/Write access
"DB_PASS" => "*******" // The password for the above user*/
|
to
Quote:
$dbs = array(
/*"DB_NAME" => "a3891127_clasifi", // The name of the database that this program will use
"DB_HOST" => "mysql13.000webhost.com", // The host that this database is on. Ex. localhost or mysql.yoursite.com or 65.29.231.91
"DB_USER" => "a3891127_rodrifr", // The username setup to use this database. Must have Read/Write access
"DB_PASS" => "*******" // The password for the above user*/);
|
PS: that's terrible commenting! You have comments inside a multi-line comment! This way var $dbs equals nothing more than array();