我试图在 php 页面中显示 MySQL 数据库表中的所有条目,但由于某种原因,它只显示最新的。我认为目前有 10 个条目,尽管还会有更多。
这是我的代码:
<?php
//connect to the server
$connect = mysql_connect("localhost","...","...");
//connect to the database
mysql_select_db("blog");
//query the database
$query = mysql_query("SELECT * FROM articles");
//fetch the results / convert results into an array
WHILE($rows = mysql_fetch_array($query)):
$article_id = $rows['article_id'];
$article_title = $rows['article_title'];
$article_content = $rows['article_content'];
endwhile;
echo "$article_id $article_title<br>$article_content<br><br><br>";
?>
有人有什么想法吗?