it might be helpful to see the code snippets you're using to login. if your webserver is on the same machine as your mysql server, you might want to try connecting to your database using something like:
mysql_connect("localhost:/var/lib/mysql/mysql.sock", "web_user", "");
or whatever your path to mysql is on the machine.
hope this helps. good luck with your studies.