I've Installed mysql, php, apache using a wamp configuration Where to access localhost is would be http://localhost:81 the PHP script I'm using is
if(mysql_connect('localhost', 'root', 'exobytes15')) {
mysql_select_db('testDB');
}
else {
echo 'Could not Connect to the database';
}
But this gives me the error
1045: Access denied for user 'root'@'localhost' (using password: YES)
What should I do to fix this problem?
echo mysql_error()say? – Pekka May 31 '11 at 14:34show grants for root@localhost;in the mysql monitor (command line mysql prompt). That'd show you if root can access the server. Either you've not explicitly granted root@localhost access rights, or are using the wrong password. – Marc B May 31 '11 at 14:38