我有一个 html 表,其中填充了 mysql 表中的数据。我使用以下代码:
$result = mysql_query("SELECT * FROM {$table}");
if (!$result) {
die("Query to show fields from table failed");
}
$fields_num = mysql_num_fields($result);
echo "<h1>Table: {$table}</h1>";
echo "<tr>";
echo "</tr>\n";
while($row = mysql_fetch_row($result))
{
echo "<tr>";
foreach($row as $cell)
echo "<td>$cell</td>";
echo "</tr>\n";
}
mysql_free_result($result);
注意:我通常使用 PDO 语句,但在本例中我使用 mysql。
代码正确生成表。问题是:我想对每隔一行应用一个 CSS,如下class=table_higlight
. 我怎样才能做到这一点?