I am having problems with connections to mysql the error is Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111) in /usr/local/apache/htdocs/comproom/php/db.php on line 3
the program is very simple.
<?php
$conn=mysql_connect("localhost", "user", "password") or die("cannot connect");
echo "connection made";
?>
any ideas?