gpt4 book ai didi

php - 以特定格式显示MySQL数据

转载 作者:行者123 更新时间:2023-11-29 04:51:25 27 4
gpt4 key购买 nike

我正在使用 PHP 从 MySQL 数据库中检索一组位置名称并将它们显示在页面上。看起来像这样。

enter image description here

我写的代码从上到下依次显示结果。

<html>
<head>
</head>
<body>

<?php

require_once("db_handler.php");

$conn = iniCon();
$db = selectDB($conn);

$query = "SELECT DISTINCT Name FROM location_categories";
$result3 = mysql_query($query, $conn);

?>

<div id="choseLoc">
Locations <br/><br/>
<table border="0">
<?php
while($row = mysql_fetch_array($result3))
{
?>
<tr>
<td><? echo $row["Name"]; ?></td>
<td align="center"><input type="checkbox" name="checkbox[]" value="<? echo $row['Loc_Code']; ?>" /></td>
</tr>
<?php
}
?>
</table>
</div>
<br/>
<div id="buttons">
<input type="reset" value="Clear" /> <input type="submit" value="Save" name="savebtn" />
</div>

</body>
</html>

现在如果有很多条记录,这样显示就不太吸引人了。我想像这样显示结果。

enter image description here

如何以这种格式显示结果?

谢谢。

最佳答案

将它用于你的内表

<table border="0">
<?php
$a = 0;

while($row = mysql_fetch_array($result3))
{
if($a++ %4 == 0) echo "<tr>";
?>

<td><? echo $row["Name"]; ?></td>
<td align="center"><input type="checkbox" name="checkbox[]" value="<? echo $row['Loc_Code']; ?>" /></td>
<?php
if($a %4 == 0) echo "</tr>";
}
?>
</table>

关于php - 以特定格式显示MySQL数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11281535/

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