gpt4 book ai didi

php - 遍历数据库并显示在表中

转载 作者:行者123 更新时间:2023-11-29 01:05:57 25 4
gpt4 key购买 nike

我正在尝试遍历我的用户数据库,以在表格中的每个用户名所在的行中显示它们。我只能让它显示一个用户,但循环遍历其中的行数。代码如下

<?php
require_once ('../login/connection.php');
include ('functions.php');

$query = "SELECT * FROM users";
$results=mysql_query($query);
$row_count=mysql_num_rows($results);
$row_users = mysql_fetch_array($results);

echo "<table>";
for ($i=0; $i<$row_count; $i++)
{
echo "<table><tr><td>".($row_users['email'])."</td></tr>";
}
echo "</table>";
?>

谢谢

最佳答案

mysql_fetch_array获取一行 - 您通常在 while 循环中使用它来吃掉结果集中的所有行,例如

echo "<table>";

while ($row_users = mysql_fetch_array($results)) {
//output a row here
echo "<tr><td>".($row_users['email'])."</td></tr>";
}

echo "</table>";

关于php - 遍历数据库并显示在表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/848905/

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