hi i want to transefer one server table to another server same name table
i have Cost_Main table in the server1
i want to transfer Cost_Main of server1 to Cost_Main to localhost
hear i have query
mysql_connect("server1", "Admin", "123456") or die(mysql_error());
mysql_select_db("firefox") or die(mysql_error());
$sqlstr="SELECT * INTO 127.0.0.1.firefox.Cost_Main
FROM Cost_Main As Cost_Main_11 ";
$result=mysql_query($sqlstr);
this not working
plz give me sample query.......................
i have Cost_Main table in the server1
i want to transfer Cost_Main of server1 to Cost_Main to localhost
hear i have query
mysql_connect("server1", "Admin", "123456") or die(mysql_error());
mysql_select_db("firefox") or die(mysql_error());
$sqlstr="SELECT * INTO 127.0.0.1.firefox.Cost_Main
FROM Cost_Main As Cost_Main_11 ";
$result=mysql_query($sqlstr);
this not working
plz give me sample query.......................
Comment