SQL查询创建带有标题的表

时间:2013-06-08 11:24:29

标签: php html sql html-table

目前我正在创建一个HTML表,其中包含来自我的一个SQL表的数据。但是我想为每一列添加标题(注意:我不想使用数据库标题)。我怎样才能做到这一点?以下是我目前没有标题的代码:

<?php
$searchResults = mysql_query("SELECT customerRefId, suburb, postcode, state FROM customer_seeking");
$num_rows = mysql_num_rows($searchResults);
?>
<table border="1">
<?php
while($row=mysql_fetch_array($searchResults))
{
echo"<tr><td>$row[customerRefId]</td><td>$row[suburb]</td><td>$row[postcode]</td><td>$row[state]</td></tr>";
}
?>
</table>

3 个答案:

答案 0 :(得分:2)

嘿你可以使用以下代码作为标题:::

<table border="1">
    <tr><th>customer Ref Id</th><th>suburb</th><th>postcode</th><th>state</th></tr>
    <?php
    while($row=mysql_fetch_array($searchResults))
    {
    echo"<tr><td>$row[customerRefId]</td><td>$row[suburb]</td><td>$row[postcode]</td><td>$row[state]</td></tr>";
    }
    ?>
    </table>

答案 1 :(得分:0)

刚刚在表格

下添加
<table border="1">
<th>Test</th>
<th>Test2</th>

答案 2 :(得分:0)

while循环之前输出标题行。