我想通过特定页面编号中的分页加载页面。如果总行的计数为0,那么如果计数为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'>";
这就是为什么我在做调查的同时尝试这样做,如果网络向下然后页面从页面开始没有人那么,我怎么能这样做..
答案 0 :(得分: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日志进行验证,这将为您提供有关此问题的警告。