我想从本地数据库更新远程数据库,我已经编写了 php 脚本来做到这一点,但它显示了致命错误。
远程数据库和本地数据库具有相同的名称、相同的表、相同的字段。
我已经尝试过这种方式,但它不起作用。
$tablename="pc_games";
$database = 'games';
$local_query = "SELECT * FROM $tablename LIMIT 100 OFFSET $remoterows";
$local_result = mysql_query($local_query, $connection) or trigger_error("SQL", E_USER_ERROR);
while($list=mysql_fetch_array($local_result))
{
$remote_update=mysql_query("INSERT INTO $tablename SETLECT * from $tablename");
$remote_update_result = mysql_query($remote_update, $remote_connection) or trigger_error("SQL", E_USER_ERROR);
}
请参阅并建议任何可能的方法来做到这一点。