1

我想通过特定页码中的分页加载页面。如果总行数为 0,则第 1 页应为 1 如果计数为 10,则第 1 页应为 11 我的代码是

$newinc=$db->get_row("SELECT count(*) as count2 FROM store where survey_name='$_SESSION[ssn_sname]' and dateone='$_SESSION[vdate]' and branch='$_SESSION[branch]' ");
$count11=$newinc->count2;
$page1=$count11+1;  
 echo "<meta http-equiv='refresh' content='0;URL=srv_form.php?page=$page1'>";

这就是为什么我在进行调查时尝试这样做的原因,如果网络关闭然后页面从第一个页面开始,我该怎么做..

4

1 回答 1

0

您的重定向解决方案必须类似于用 php 标头功能替换元刷新。

$newinc=$db->get_row("SELECT count(*) as count2 FROM store where survey_name='".$_SESSION['ssn_sname']."' and dateone='".$_SESSION['vdate']."' and branch='".$_SESSION['branch']."' ");
$count11=$newinc->count2;
$page1=$count11+1;  
header("location: srv_form.php?page=$page1");

如果您的页面未重定向,则打印或渲染一定有问题。您可以使用 apache 日志进行验证,这将为您提供有关此的警告。

于 2013-04-08T06:24:40.360 回答