我想通过特定页码中的分页加载页面。如果总行数为 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'>";
这就是为什么我在进行调查时尝试这样做的原因,如果网络关闭然后页面从第一个页面开始,我该怎么做..