0

我有一个正在写的小购物车,目前正面临如何将 MySQL 表结果显示为表格显示的问题。我有一个执行整个数据库搜索并返回结果的代码,我的问题是像大多数购物车一样显示结果。

这是我想要实现的一个例子。

<table>

<tr>
<td>First mysql result row comes here</td>
<td>Second Mysql result row comes here</td>
</tr>


<tr>
<td>third mysql result row comes here</td>
<td>fourth Mysql result row comes here</td>
</tr>

</table>

请注意,它<td>每行显示两个。

我很难找到答案。可以使用css完成吗?

4

1 回答 1

3
<table>
<?php
$tr = false;

foreach( $results_from_database as $result ) {
    $tr = !$tr;

    if( $tr ) {
        echo '<tr>';
    }

    echo "<td>$result</td>";

    if( !$tr ) {
        echo '</tr>';
    }
}

// if there's odd amount of results, add an empty cell and close the tr tag
if( $tr ) {
    echo '<td></td></tr>';
}
?>
</table>
于 2012-06-01T21:11:39.427 回答