如何使用此代码更改字体颜色?我只是在寻找一个简单的解决方案,但如果你还想建议如何将其重写为SQL注入证明,我也会很感激。请帮忙,因为我还在学习。
echo "<table>";
echo "<table border='0' width='800' align='center' >";
echo "<td width='40%' align='center'></td>
<td width='20%' align='center'></td>
<td width='40%' align='center'></td>";
echo "</tr>";
$row_number = 1;
while ($row = mysql_fetch_array($result)) {
$id_actor = $row["id_actor"];
$idfilm = $row["idfilm"];
$filmTitle = $row["filmTitle"];
$filmRole = $row["filmRole"];
$filmDirector = $row["filmDirector"];
for($i = 0; $i < 3; $i++) {
echo "<td> $row[$i]</td>";
}
echo "</tr>";
$row_number++;
}
echo "</table>";
答案 0 :(得分:2)
在代码的开头,为CSS样式插入以下内容:
echo "
<style>
tr:nth-child(2n+1) {
background-color: #ccc;
}
</style>"
答案 1 :(得分:0)
而不是echo"<td> $row[$i]</td>";
,请尝试使用
echo"<td><font color=\"red\"> $row[$i]</font></td>";
答案 2 :(得分:0)