我有一个php类型的文件。我还有HTML元素,javascript函数和一些PHP脚本的组合。我想重新运行php脚本一次又一次说出脚本的某些部分。让我们举个例子:
<html>
<?php
$connection = mysql_connect('localhost','root','root');
$db = mysql_select_db('messenger');
if ($db == null)
{
echo "hello";
}
$messagecheck = "select * from Messages where destination = '$user' && status = 'ACTIVE'";
$result = mysql_query($messagecheck);
$no_rows = mysql_num_rows($result);
............
?>
<body>
........
<form>
<input type="submit">
.......
</form>
</body>
</html>
我想从同一个文件每1分钟连续运行上面的php脚本。当我使用location.reload()
时,我发现重新加载了完整的文档。我只想要影响php脚本访问的页面部分,而不是整个doc。
我该怎么做?请帮忙。