Home  >  Article  >  Backend Development  >  为啥小弟我这个预处理语句执行不了呢

为啥小弟我这个预处理语句执行不了呢

WBOY
WBOYOriginal
2016-06-13 12:17:14851browse

为啥我这个预处理语句执行不了呢
$mysqli= new mysqli("localhost","root","123456","xsphpdemo");
if(mysqli_connect_errno()){
echo "连接失败
".mysqli_connect_error();
}

$stmt=$mysqli->prepare("select id name price num desn from shop where id>?");

$stmt->bind_param("i",$id);
$stmt->bind_result($id,$name,$price,$num,$desn);
$id="10";
$stmt->execute();
$stmt->store_result();
while($stmt->fetch()){
echo "$id -- $name -- $price -- $num -- $desn 
";
}
echo $stmt->num_rows;
$stmt->close();
执行Var_dump("select id name price num desn from shop where id>?")
布尔型值是假
好像$mysqli->prepare()语句执行不成功,不知道为啥
------解决思路----------------------
"select `id`, `name`, `price`, `num` ,`desn` from shop where id>?"
------解决思路----------------------
字段没有隔开
$stmt=$mysqli->prepare("select id, name, price, num, desn from shop where id>?");

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:201306114357-实验一Next article:读取数组的有关问题