hello,
quick question here. is it possible to update multible mysql database with one database is localhost(backup) and the 2nd one is the online one.
so my code is like this:
mysql_connect("localhost", "username", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
$query = (insert query here)
mysql_query($query) or die(mysql_error());
mysql_connect("somehere.com", "username", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());
$query1 = (insert query here)
mysql_query($query1) or die(mysql_error());
thanks