05-20-2012, 05:38 PM
Look here.
$mysqlcon = mysql_connect( $mySQL["server"] , $mySQL["username"] , $mySQL["password"] ) or die( mysql_error ) )<- What is this one no opening bracket, but closing?;
To fix paste this on line 67 + 68, since both lines have the same problem.
$mysqlcon = mysql_connect($mySQL["server"], $mySQL["username"], $mySQL["password"]) or die(mysql_error);
mysql_select_db($mySQL["database"], $mysqlcon) or die(mysql_error);
Hi,
Thanks for your answers but now i have another error XD ><
Look :
Warning: mysql_connect() [2]: Host ASP-ECOB4L4 is not allowed to connect to this MySQL server in C:\xampp\htdocs\Config\Config.php on line 67
Notice: Use of undefined constant mysql_error - assumed mysql_error in C:\xampp\htdocs\Config\Config.php on line 67
mysql_error
Line 67 & 68 :
$mysqlcon = mysql_connect($mySQL["server"], $mySQL["username"], $mySQL["password"]) or die(mysql_error);
mysql_select_db($mySQL["database"], $mysqlcon) or die(mysql_error);

