> 백엔드 개발 > PHP 튜토리얼 > 分层做雇员管理系统,check the manual that corresponds to your MySQL server version 这是什么东东

分层做雇员管理系统,check the manual that corresponds to your MySQL server version 这是什么东东

WBOY
풀어 주다: 2016-06-13 10:29:12
원래의
1548명이 탐색했습니다.

分层做雇员管理系统,check the manual that corresponds to your MySQL server version 这是什么错误?
我用分层做一个雇员管理系统,写到雇员分页那里的时候怎么会有这样的提示:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '6' at line 1
俺表示从来没有见过,是哪里出问题了,需要怎么修改呢?


  require_once 'SqlHelper.class.php';  
  class EmpService{
  //设置获取$pageCount,共有多少页
  function getpageCount($pageSize){
  $sql="select count(id) from emp";
  $sqlHelper=new SqlHelper();
  $res=$sqlHelper->execute_dql($sql);
  if($row=mysql_fetch_row($res)){
  $pageCount=ceil($row[0]/$pageSize);
  }
  mysql_free_result($res);
  mysql_close();
  return $pageCount;
  }
  //设置应该显示出来的雇员信息
  function getempLiseByPage($pageSize,$pageNow){
  $sql="select * from limit".($pageNow-1)*$pageSize.",$pageSize";
  $sqlHelper=new SqlHelper();
  $res=$sqlHelper->execute_dql($sql);
   
  //释放资源关闭连接
  mysql_free_result($res);
  $sqlHelper->close_connect();
  return $res;
  }
  }
?>

------解决方案--------------------

PHP code
$sql="select * from limit ".($pageNow-1)*$pageSize.",$pageSize";<div class="clear">
                 
              
              
        
            </div>
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿