循环表以连续显示结果

时间:2014-10-02 02:12:07

标签: php mysql sql loops html-table

我想显示一行中的内容。截至目前,我的代码在垂直列中生成它。如何修复它以便在生成时并排放置。

或至少如果它超过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>

1 个答案:

答案 0 :(得分:1)

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

<?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  |  
*****************************************************************************