gpt4 book ai didi

php - 循环表格以在行中显示结果

转载 作者:行者123 更新时间:2023-11-29 12:40:49 25 4
gpt4 key购买 nike

我想显示连续的表格内容。到目前为止,我的代码在垂直的列中生成它。我该如何修复它,以便生成时它会并排。

或者至少如果它超过 2

最多 2 列,然后另一行用于其他值,然后在 2 列之后,另一行。

请帮我显示两者。所以我可以看看哪个更好。

这是我的代码:

<table width="" cellpadding="3" cellspacing="0" border="0">
<?php
$qry="SELECT * FROM shipping";
$result= @mysql_query($qry);
while ($row=mysql_fetch_assoc($result)){
?>
<tr class="row_submit">
<td height="250px" width="300px"><center><label>
<input type="radio" name="carrier" <?php if (isset($carrier) && $carrier=="row[ship_name]") echo "checked";?> value="<?php echo $row['ship_name']; ?>">
<!--<img src="../paymentoptions/lbc.png" alt="LBC" class="picture" width="245px" style="margin:10px"/></label></td> -->
<?php echo '<img src="data:image/jpeg;base64,'.base64_encode( $row['ship_pic'] ).'" height="210px" width="245px" style="margin:10px"/>'; ?>

<td></td>

</tr>
<tr class="row_submit">
<td height="180px" width="300px"><p><?php echo $row['ship_desc']; ?><p>
<div id='price'> Additional ₱ <?php echo $row['ship_price']; ?></div></td>
<td></td>

<?php } ?>

</table>

最佳答案

这将以每行两列的形式显示您的数据:

<?php
echo "<table><tr>";
$i = 0;
while (...) {
if ($i > 0 && $i % 2 == 0) {
echo "</tr><tr>";
}
echo "<td>...</td>";
$i++;
}
echo "</tr></table>";
?>

结果:

***************
Item1 | Item2
Item3 | Item4
Item5 | Item6
.... | ....
***************
<小时/>

要在一行中并排显示数据,要简单得多:

<?php
echo "<table><tr>";
while (....) {
echo "<td>...</td>";
}
echo "</tr></table>";
?>

结果:

*****************************************************************************
Item1 | Item2 | Item3 | Item4 | Item5 | Item6 | .... | ItemN |
*****************************************************************************

关于php - 循环表格以在行中显示结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26153514/

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