gpt4 book ai didi

php - 显示来自mysql的多条记录

转载 作者:搜寻专家 更新时间:2023-10-30 22:18:58 25 4
gpt4 key购买 nike

我有一个 php 网页,我希望它能同时显示所有论坛主题。他是我当前的数据库代码,它只在线程上显示。

mysql_connect("localhost", "", "") or die("could not connect to mysql"); 
mysql_select_db("") or die("could not connect to db");


$result = mysql_query("SELECT * FROM reference")
or die(mysql_error());


$row = mysql_fetch_array( $result );

echo "<strong>ref_thread_id:</strong> ".$row['ref_thread_id'].'<br />';
echo "<strong>ref_thread_prefix:</strong> ".$row['ref_thread_prefix'].'<br />';
echo "<strong>ref_thread_topic:</strong> ".$row['ref_thread_topic'].'<br />';
echo "<strong>ref_thread_content:</strong> ".$row['ref_thread_content'].'<br />';

如何让它吐出该表中的每条记录?

谢谢。

最佳答案

您需要使用 while 循环。获取函数一次只能获取一行。

while($row = mysql_fetch_array($result)) {
echo ...
}

关于php - 显示来自mysql的多条记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6987437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com