尝试使用 While 循环从数据库打印帖子,无法将所有帖子包装在单个 DIV 标记中。
代码:
<?php
$sql="select posts from coder where 1=1 ";
$result= mysql_query($sql);
while($row=mysql_fetch_array($result))
{
?>
<div> -------- Wrapper DIV Starts
<span><?php echo $row['1']; ?></span> ------ loop and print all post inside Wrapper DIV
</div> -------- Wrapper DIV Ends
<?php } ?>
需要输出为:
<div>
posts
posts
posts
posts
</div>