我有一个网站结构如下
<div id="title">
<h1> //call $title here after executing loop </h1>
</div>
<?php
...
while ($row = $result->fetch_assoc()) { $title = $row['title']; ?>
<h2> this is the <?php echo $title;?> </h2>
<?php } ?>
有没有办法我仍然可以$title
在while循环语句的顶部使用或调用html元素上的变量?
每当我在 while 循环上方调用它时,我都会收到类似的错误Undefined variable: id..
编辑:改为将 id 更改为 'title'