我的查询就像打击一样简单:但我不明白为什么我会得到这个错误=>可捕获的致命错误:PDOStatement类的对象无法转换为
中的字符串$sub_id=4;
include('inc/config.php');
echo $statement = $pdo->prepare("SELECT * FROM posts WHERE subid=:q");
$statement->execute(array(':q' => $sub_id));
while($row = $statement->fetch())
{
$tutor=$row['Name'];
}
答案 0 :(得分:0)
您不能echo
$statement
变量,因为它是PDOStatement Object
,因此您需要了解如何使用PDO:)