I get this error when I try to use my dbconnect.php
Warning: mysql_connect() [function.mysql-connect]: #07000(proxy) all backends are down
I have only made database connections on my localhost before so I am sure I am doing something wrong, my connect file is
Any help appreciated
Warning: mysql_connect() [function.mysql-connect]: #07000(proxy) all backends are down
I have only made database connections on my localhost before so I am sure I am doing something wrong, my connect file is
Code:
<?php
$con = mysql_connect("localhost","MyUsername","MyPassword");
if (!$con) {
die('Coulnd not connect: ');
}
?>