Friday 26 April 2013

Solution : PHP Warning: mysql_connect(): No such file or directory

If you get PHP Warning: mysql_connect(): No such file or directory and unable to connect mysql through php then change localhost to 127.0.0.1 while connecting to database

example:
$connection = mysql_connect('localhost', 'root', 'password');
to
$connection = mysql_connect('127.0.0.1', 'root', 'password');

Share This!



1 comment:

  1. Please tell how to add php code to my Blogger Blog? Any way to add those nice php gadget like pop up facebook box etc to my technology Blog? And how to add mysql to Blogger?

    ReplyDelete

Here We Write The Problems we face at different situations and Solutions to those problems.