gpt4 book ai didi

php - 使用 mysqli_fetch_array 在 PHP 表 MySQL 中显示数据

转载 作者:行者123 更新时间:2023-11-30 22:30:44 26 4
gpt4 key购买 nike

目前,数据显示在一行中,我需要以表格格式显示。

将有 5 个标题与下面的 5 种“数据类型”对齐。

echo "<h3>search results for <i>". $keyword."</i></h3><br>";
while($result_arr = mysqli_fetch_array( $result ))
{
echo $result_arr['datatype1'];
echo $result_arr['2'];
echo $result_arr['3'];
echo $result_arr['4'];
echo $result_arr['5'];
}
$anymatches=mysqli_num_rows($result);

最佳答案

这只是按照@Phil-Cooper 所说的格式化输出的情况:

echo "<h3>search results for <i>".$keyword."</i></h3><br><table><tr><th>Heading 1</th><th>Heading 2</th><th>Heading 3</th><th>Heading 4</th><th>Heading 5</th></tr>";
while($result_arr = mysqli_fetch_array( $result ))
{
echo "<tr><th>".$result_arr['datatype1']."</th>";
echo "<th>".$result_arr['2']."</th>";
echo "<th>".$result_arr['3']."</th>";
echo "<th>".$result_arr['4']."</th>";
echo "<th>".$result_arr['5']."</th></tr>";
}
echo "</table>";
$anymatches=mysqli_num_rows($result);

关于php - 使用 mysqli_fetch_array 在 PHP 表 MySQL 中显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33959267/

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