状态板程序的自动分页

时间:2013-03-15 07:00:06

标签: php mysql ajax

我的mysql数据库中有更多数据。我想显示数据,每页10个数据只需要显示,为此我写了分页代码。它的工作非常好,但我想自动运行该分页,这意味着几秒后页面会自动转到第二页然后第三页等......但我不知道如何实现请帮助任何人。以下是示例代码供参考:

    <?php
include "config.inc";

$sql = "SELECT COUNT(*) FROM test";
$result = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);
$r = mysql_fetch_row($result);
$numrows = $r[0];


$rowsperpage = 3;

$totalpages = ceil($numrows / $rowsperpage);


if (isset($_GET['currentpage']) && is_numeric($_GET['currentpage'])) {

$currentpage = (int) $_GET['currentpage'];
} else {

$currentpage = 1;
}


if ($currentpage > $totalpages) {

$currentpage = $totalpages;
} 
if ($currentpage < 1) {

$currentpage = 1;
} 


$offset = ($currentpage - 1) * $rowsperpage;


$sql = "SELECT * FROM test LIMIT $offset, $rowsperpage";
$result = mysql_query($sql) or trigger_error("SQL", E_USER_ERROR);


while ($list = mysql_fetch_array($result)) {

echo $list['mark_cut_weld'] . " : " . $list['mark_cut_inves'] . "<br />";
} 


$range = 3;


if ($currentpage > 1) {

echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=1'><<</a> ";

$prevpage = $currentpage - 1;

echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$prevpage'><</a> ";
} 


for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) {

if (($x > 0) && ($x <= $totalpages)) {

if ($x == $currentpage) {

 echo " [<b>$x</b>] ";

} else {

 echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$x'>$x</a> ";
} 
} 
} 


if ($currentpage != $totalpages) {

$nextpage = $currentpage + 1;

echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$nextpage'>></a> ";

echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$totalpages'>>></a> ";
} 
?>

上面的代码,我只是通过php从mysql数据库中获取数据。然后将每页的数据设置为3.我只得到总计数,然后除以每行的行数...然后自动显示数据。

我的目标是显示数据库中的数据。每页10个数据,然后自动移动到下一页10个数据,无需任何操作点击或提交...     因为它是状态板程序..我们将在工厂用大电视显示...所以工人可以看到这个大电视的工作状态。

2 个答案:

答案 0 :(得分:2)

您可以设置标题重定向以重定向到下一页。

例如,以下代码会在10秒内将您重定向到下一页。

header('Refresh: 10; URL='.$_SERVER['PHP_SELF'].'?page='.$next_page);

确保在回显PHP中的任何内容之前设置标题。

答案 1 :(得分:0)

您将需要使用javascript set timeoutsredirect每隔一段时间{{3}}到下一页的位置。

例如,将其添加到HTML正文的底部:

<script type="text/javascript">
    function switchPage(){
        window.location = "<?php echo $next_page?>"; // set the next page of results to view.
    }

    setTimeout(switchPage,60*1000); // call callback every minute
</script>

变量$next_page需要是使用PHP的下一组结果的URL。

要重复这一步,你需要PHP端的模数,当达到结果的末尾时,它会翻转回第0页。

<?php
$next_page_count = ++$currentpage % $totalpages;
$next_page = $_SERVER['PHP_SELF'] . '?currentpage=' . $next_page_count;