我想从表“主题”中获取每个结果。
function display_all_themes()
{
global $pdo;
$select = $pdo->prepare("SELECT * FROM themes");
$select->execute();
while ($row = $select->fetch(PDO::FETCH_ASSOC))
{
echo $select['theme_name'].'<br />';
}
}
收到此错误:
致命错误:不能在第 137 行的 C:\xampp\htdocs\driptone\inc\functions.inc.php 中使用 PDOStatement 类型的对象作为数组
第 137 行:
echo $select['theme_name'].'<br />';
问题是什么? 谢谢。