I'm trying to connect to my mysql database with the code:
mysql_connect($mysqlhost, $mysqlusername, $mysqlpassword);
It gives me a Warning: mysql_connect(): Access denied for user: 'ODBC@localhost' (Using password: NO) I can't figure it out because I'm using a password. The strange thing is if i just go
mysql_connect($mysqlhost, $mysqlusername, "mypassword");
it connects fine, help would be great.
Many Thanx