我正在尝试在php中制作新闻系统。 DB结构看起来像这样
"title" "author" "content"
PHP脚本看起来像这样
<?php
include ('config2.php');
$result = mysql_query("select * from news");
while($row = mysql_fetch_array($result)) {
$title = $row['title'];
$author = $row['author'];
$content = $row['content'];
}
echo"<div class=\"post\">
<h2 class=\"title\"><font color=\'#1e1e1e\' href=\"#\">$title</font></h2>
<p class=\"meta\">Today <a href=\"#\">$author</a></p>
<p>$content</p>
</ul>
</div>"
?>
我想要做的是:每次在我的数据库中插入一个新行时,我都希望在页面上显示新行,现在当我添加新行时,它只是编辑上一个新行。 有什么想法吗?
答案 0 :(得分:1)
将echo
语句置于 while
循环中。
答案 1 :(得分:1)
你echo
在while
循环之外。将其修改为以下内容:
while($row = mysql_fetch_array($result)) {
$title = $row['title'];
$author = $row['author'];
$content = $row['content'];
echo"<div class=\"post\">
<h2 class=\"title\"><font color=\'#1e1e1e\' href=\"#\">$title</font></h2>
<p class=\"meta\">Today <a href=\"#\">$author</a></p>
<p>$content</p>
</ul>
</div>";
}