I installed XAMPP on my Ubuntu 14.0.04, and I try to connect to my MySQL server from a PHP file, but I get an error:
Warning : mysql_connect (): no such file or directory in /opt/lampp/htdocs/value.php on line 3 is
not connected
My value.phpfile contains
<?php
$con = mysql_connect('localhost:3307', 'root', '');
if ($con) echo 'Connected';
else echo 'not connected';
---
?>
and my MySQL server is running and my server is also running.
source
share