i have installed a database in my local pc
and an identical database in another pc (say b) in phpmyadmin
how do i coonect to tat pc(b)
i used the following to connect from my local pc
$con1 = mysql_connect('domain_name', 'username', 'passwrd');
if (!$con1)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("database_name_", $con1);
but its displaying the following error
Could not connect: Can't connect to MySQL server on 'www.ristaa.com' (10060)
wat to do?







Bookmarks