SELECT * from store_product where category= '7' order by id desc,title,date asc LIMIT -16 , 16
执行错误: 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 '-16 , 16' at line 1

57.      {
58.          $this->arrSql[] = $sql;
59.          if( $result mysql_query($sql$this->conn) ){
60.              return $result;
61.          }else{
62.              spError("{$sql}<br />执行错误: " mysql_error());
63.          }
64.      }
65.      
66.      /**
67.       返回影响行数
21.       
22.       * @param sql  执行的SQL语句
23.       */
24.      public function getArray($sql)
25.      {
26.          if( ! $result $this->exec($sql) )return array();
27.          if( ! mysql_num_rows($result) )return array();
28.          $rows = array();
29.          while($rows[] = mysql_fetch_array($result,MYSQL_ASSOC)){}
30.          mysql_free_result($result);
31.          array_pop($rows);
202.       *
203.       * @param sql 字符串,需要进行查找的SQL语句
204.       */
205.      public function findSql($sql)
206.      {
207.          return $this->_db->getArray($sql);
208.      }
209. 
210.      /**
211.       执行SQL语句,相等于执行新增,修改,删除等操作。
212.       *
65.  $pagesize 16;
66.  $p $this->spArgs('p')?$this->spArgs('p'):1;
67.  $offset = ($p-1)*$pagesize;
68.  //输出第一页
69. 
70.  $this->productspClass("product")->findsql("SELECT  *  from   store_product where category= '$catid'  order by id desc,title,date asc LIMIT  $offset , $pagesize");
71. 
72.  $sql2 "SELECT  count( distinct id ) as count  from    store_product where category= '$catid' order by title asc ";   
73.      $product spClass('product');
74.        $arr mysql_fetch_array($product->runSql($sql2));
75.          $count_array $arr[count];
16.      if(!is_object($handle_controller) || !method_exists($handle_controller$__action)){
17.          eval($GLOBALS['G_SP']["dispatcher_error"]);
18.          exit;
19.      }
20.      // 路由并执行用户代码
21.      $handle_controller->$__action();
22.      // 控制器程序运行完毕,进行模板的自动输出
23.      if(FALSE != $GLOBALS['G_SP']['view']['auto_display']){
24.          $__tplname $__controller.$GLOBALS['G_SP']['view']['auto_display_sep'].
25.                  $__action.$GLOBALS['G_SP']['view']['auto_display_suffix']; // 拼装模板路径
26.          $handle_controller->auto_display($__tplname);
75.         'dispatcher_error' => "spController::jump('/index.php');",
76. 
77.  ); require(SP_PATH."/SpeedPHP.php");
78.  import('md5password.php');
79.  import('icPHPExcel.php');
80.  spRun();