我搜索和搜索,但找不到我的问题的任何答案所以如果这是一个转贴新手,我很抱歉。
我在一个名为functions.php的单独文件中有这个函数
function get_all_posts(){
global $connection;
$q = "SELECT * FROM blog LIMIT 1";
$get_posts = mysqli_query($connection, $q);
if (!$get_posts){
die ('Query failed.');
}
return $get_posts;
}
在 blog.php 中调用函数
<div class="group">
<?php get_all_posts();
while ($row = mysqli_fetch_array($get_posts)){
?>
<h1><?php echo $row['title']; ?></h1>
<?php } ?>
</form>
</div>
但我一直有一个未定义的变量$get_posts
。