I\'ve just started using WAMP for a PHP project and I get the next errors related with this line of code:
$link=mysql_connect(\"localhost\",\"myuser\",\"mypa
If using MySQL 4.1 + Try this
At the MySQL Command line
mysql> set old_passwords = 0; mysql> set password for 'user'@'some.host.domain' = PASSWORD('new_pass'); mysql> set old_passwords = 1;
mysql> set old_passwords = 0;
mysql> set password for 'user'@'some.host.domain' = PASSWORD('new_pass');
mysql> set old_passwords = 1;