我正在尝试在php中创建一个新闻系统。
数据库结构如下所示

"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>"
 ?>


我想做的是:每次在数据库中插入新行时,我都希望新页显示在页面上,现在,当我添加新行时,只需编辑先前的新行即可。
任何想法?

最佳答案

您正在echo循环之外。修改为以下内容:

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>";
}

08-27 03:38