db更新时的Ajax自动更新

时间:2012-06-13 02:28:51

标签: mysql ajax

我需要在mySQL数据库更新时自动更新文本。 有人可以帮忙吗?我看了很多,没有帖子说我需要什么,我是ajax的新手并且不太了解它。我所知道的只是HTML,CSS,PHP和javascript。

1 个答案:

答案 0 :(得分:1)

首先,您可能需要检查jQuery。如果你了解javascript就会非常简单,它会让你的开发变得更容易。

然后你需要检查jQuery如何实现ajax call。再一次,非常简单,这是一个例子。

<强> test.php的

$var1 = $_POST['key'];
$var2 = $_POST['key1'];

//Some code here

echo 'Test finished'; // This is returned to the ajax call

<强> JAVASCRIPT

$.ajax({
         url:   '/test.php', 
        type:   'POST', /*Method, POST or GET depending on your needs*/
       async:  true, /*This makes the ajax call asyncronously or not*/
        data: {'key':value,'key2':value2},/*data to send*/
     success: function(result){  /*Return from PHP side*/

            /* result contains the data replied from the PHP script. */
            alert(result);

        }
});

如果您想要替换HTML的某些部分,您可能需要查看appendafterbeforeprependhtml等功能,等等还要了解JSON的内容,这是一种数据格式。非常简单而又华丽

希望这对你有所帮助!它看起来像是家庭作业,但你会立刻获得它,你会看到。