PDO 输入SQL语句提示语法错误 30

if(isset($_GET['action'])&&$_GET['action']=='ser'){$tmp=!empty($_POST)?$_POST:$_GET;$... if(isset($_GET['action'] ) && $_GET['action']=='ser'){

$tmp= !empty($_POST) ? $_POST : $_GET;

$whr = array();

if(!empty($tmp['bookname'])){
$whr[]= " bookname LIKE '%{$tmp['bookname']}%'";
$args .="&bookname={$tmp['bookname']}";
}else{
$tmp['bookname'] = "";
}

if(!empty($tmp['author'])){
$whr[]= "author LIKE '%{$tmp['author']}%'";
$args .="&author={$tmp['author']}";
}else{
$tmp['author'] = "";
}

if(!empty($tmp['minprice'])){
$whr[]= "price >= '{$tmp['minprice']}'";
$args .="&minprice={$tmp['minprice']}";
}else{
$tmp['minprice'] = "";
}

if(!empty($tmp['maxprice'])){
$whr[]= "price <= '{$tmp['maxprice']}'";
$args .="&maxprice={$tmp['maxprice']}";
}else{
$tmp['maxprice'] = "";
} print_r($whr)."<br>";

if(!empty($whr)){
$where = "where ".implode(" and ",$whr);

}else{
$where = "";
}
}

try{
$ser= $pdo-> prepare ( "SELECT count(*) as total FROM `books` :where");
$ser-> bindParam("where",$where);

$ser-> execute();

}catch(PDOException $error){
echo "错误:".$error -> getMessage()."<br>";
}
print_r($ser);

$sere = $ser-> fetch(PDO::FETCH_ASSOC);

$page = new Page($sere['total'],$num,$args);

SQLSTATE[42000]: Syntax error or access violation: 1064 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 '''' at line 1
请问是什么问题导致的
展开
 我来答
抄友灵70
2015-06-29 · TA获得超过183个赞
知道小有建树答主
回答量:441
采纳率:50%
帮助的人:184万
展开全部
SQL不对,把SQL打出来,去数据库里执行。
更多追问追答
追问
SQL打出来? 具体是什么概念?
追答
输出执行的SQL
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式