Home  >  Article  >  Backend Development  >  php分页有关问题 系统提示未定义变量Undefined variable: php_self

php分页有关问题 系统提示未定义变量Undefined variable: php_self

WBOY
WBOYOriginal
2016-06-13 12:46:28910browse

php分页问题 系统提示未定义变量Undefined variable: php_self
这个页面是一个可以正常显示列表的页面,单击“下一页”时,页数会发生变化,但是页面内容还是显示的第一页。系统提示第72和79行未定义变量Undefined variable: php_self 我应该怎样修改下? 

<?php <br />
/*error_reporting(E_ALL ^ E_NOTICE);*/<br>
//######################课题列表##########################<br>
  include "config.php";<br>
  include "header.php";<br>
?> <br>
<meta><br>
<br>
<link><br>
<title>课题列表</title><br>
<style><br />
<!--<br />
.STYLE1 {font-size: 14px}<br />
--><br />
</style><br>

   
  
  
  
  
  
  
  
  
  
  $n=0; 
  $query=mysql_query("select count(*) as sm from jiaoshi");
  mysql_query("set names 'GB2312'");
  $row=mysql_fetch_array($query);
  $count=$row['sm'];
    if(empty($offset))
              {$offset=0;}
echo  $offset;
   $query=mysql_query("select * from jiaoshi order by id asc limit $offset,$list_num") or die ("fail");
   mysql_query("set names 'GB2312'");
   while($row=mysql_fetch_array($query)){
        if(($n%2)!='0'){
    echo "";}
  else{
  echo "";
  }
if($row['surplus']==0)
     $ss="不可选";
else $ss="可选"; 
     echo"

 
  

课题编号

 
 
课题名称
    
 
指导教师
 
职称
    
 
可选人数
    
选题情况
    
状态
    
详细资料
    
 
".$row['id']."
 
".$row['subject']."
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn