在线离线和离线同步在PHP中

时间:2013-01-21 06:23:04

标签: php tags

我想在php的页面中创建一个按钮,可以将数据库从localhost同步并更新到服务器和服务器到localhost。 Localhosts拥有自己的用户ID和密码。我的意思是,如果互联网无法正常工作,他们可以离线更新数据库,当有互联网时,他们可以更新服务器中的数据库,同时也可以在localhost中更新服务器更新的数据库。

1 个答案:

答案 0 :(得分:0)

您应该在浏览器离线时尝试使用localStorage

  1. http://diveintohtml5.info/storage.html
  2. http://www.w3schools.com/html/html5_webstorage.asp
  3. 稍后您应该在浏览器再次建立Internet连接后使用AJAX,这样您就可以将localStorage内容发送到您的服务器:

    1. http://api.jquery.com/jQuery.ajax/
    2. Sending localStorage variables through the jQuery Ajax function without it being in the url
    3. http://www.w3schools.com/ajax/default.ASP