SELECT article_id FROM gsp_article WHERE category_id= and article_id 执行错误: 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 article_id
- /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.
spError("{$sql}<br />执行错误: " . mysql_error());
63.
}
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.
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);
- /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.
return $this->_db->getArray($sql);
108.
}
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.
if( $record = $this->findAll($conditions, $sort, $fields, 1) ){
66.
return array_pop($record);
67.
}else{
68.
return FALSE;
69.
}
70.
}
- /data/wwwroot/default/model/db_article.php on line 60
55.
//获得上一篇下一篇
56.
function getNext($article_id)
57.
{
58.
$category_id=$this->getField(array("article_id"=>$article_id),"category_id");
59.
60.
$nextresult=$this->find("category_id={$category_id} and article_id<{$article_id}","article_id desc","article_id","0,1");
61.
62.
if($nextresult)
63.
{
64.
$nextinfo=$this->find(array("article_id"=>$nextresult["article_id"]),"","article_id,article_title");
65.
$nextstr='<a href="/index.php?c=article&a=view&id='.$nextinfo["article_id"].'">'.$nextinfo["article_title"].'</a>';
- /data/wwwroot/default/controller/article.php on line 153
148.
$article_id=$this->cytrim("id");
149.
$cid=$article->getField(array("article_id"=>$article_id),"category_id");
150.
$parent_id=$article->getField(array("article_id"=>$article_id),"parent_id");
151.
$viewtpl=$category->getField(array("category_id"=>$cid),"view_tpl");
152.
$this->articlevalue=$article->spLinker()->find(array("article_id"=>$article_id));
153.
$this->articlenext=$article->getNext($article_id);
154.
$this->articleprev=$article->getPrev($article_id);
155.
$tplname="web/".$viewtpl;
156.
157.
$this->columnlist=$category->spLinker()->findAll(array("parent_id"=>$parent_id),"","category_id,category_name,type_id");
158.
$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.
$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);
- /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.
spRun();
30.
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.
include 'sy.php';
11.
exit();
12.
}
13.
?>
- /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_article.php on line 60
55.
//获得上一篇下一篇
56.
function getNext($article_id)
57.
{
58.
$category_id=$this->getField(array("article_id"=>$article_id),"category_id");
59.
60.
61.
$nextresult=$this->find("category_id={$category_id} and article_id<{$article_id}","article_id desc","article_id","0,1");
62.
if($nextresult)
63.
{
64.
$nextinfo=$this->find(array("article_id"=>$nextresult["article_id"]),"","article_id,article_title");
65.
$nextstr='<a href="/index.php?c=article&a=view&id='.$nextinfo["article_id"].'">'.$nextinfo["article_title"].'</a>';
- /data/wwwroot/default/controller/article.php on line 153
148.
$article_id=$this->cytrim("id");
149.
$cid=$article->getField(array("article_id"=>$article_id),"category_id");
150.
$parent_id=$article->getField(array("article_id"=>$article_id),"parent_id");
151.
$viewtpl=$category->getField(array("category_id"=>$cid),"view_tpl");
152.
$this->articlevalue=$article->spLinker()->find(array("article_id"=>$article_id));
153.
154.
$this->articlenext=$article->getNext($article_id);
$this->articleprev=$article->getPrev($article_id);
155.
$tplname="web/".$viewtpl;
156.
157.
$this->columnlist=$category->spLinker()->findAll(array("parent_id"=>$parent_id),"","category_id,category_name,type_id");
158.
$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.
?>