dagoodgames Posted March 16, 2006 Share Posted March 16, 2006 Hello,I'm trying to connect to a mySQL database with PHP. I'm trying to use the mysql command, but I get the following message:Warning: mysql_connect(): Access denied for user 'dagoodgamer'@'localhost' (using password: YES) in /home/dagoodga/...etc.Does this message mean I have the wrong username and/or password? If so, could someone explain the proper way to use the mysql_connect command? I'm not very familiar with it. Is the following the correct usage:$db = mysql_connect("localhost", "username", "password");(where you replace "username" and "password" with your username and password?)Thanks,DaGoodGames Quote Link to comment Share on other sites More sharing options...
AV1611 Posted March 16, 2006 Share Posted March 16, 2006 you need to make sure you have access two different ways:First, the user/login needs to be correctsecond, the login source needs to be validfor example, you might be able to login as ROOT/PASSWORD from LOCALHOST, but not as ROOT/PASSWORD from 123.45.6.123I you want to only allow local access, localhost is appropriate, but if you want to login from other locations, you might specify the IP in your settings, or you could specify % by BE CAREFULL doing that...Here is how I connect...[code]$user="blah";$host="localhost";$password="blah";$database = "blah";mysql_connect($host,$user,$password);mysql_select_db($database);[/code] Quote Link to comment Share on other sites More sharing options...
dagoodgames Posted March 16, 2006 Author Share Posted March 16, 2006 Thank you! That worked! And I found out right before reading your post that I had the wrong username. But now I've got logged on. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.