我在外部文件中有这个 php 脚本,试图从数据库中获取随机问题:
<?php
//connect to db
require_once('db.php');
$id=rand(0,13); //2nd number = highest ID
if ($resQ = $mysqli->query("SELECT Quest FROM qa WHERE ID='$id'")){
echo "" . $resQ['Quest'] . ""; //This is Line 9
$resQ->close();
}
$mysqli->close();
?>
我在我的页面中这样称呼它
<body>
code...
<?php require_once('script/m_q.php'); ?>
...code
</body>
但我得到错误:
致命错误:无法在第 9 行的 .../m_q.php 中使用类型为 mysqli_result 的对象作为数组
有什么帮助吗?谢谢
谢谢大家......不幸的是我只能接受一个答案,我选择第一个回答的那个。