如何使用此代码更改字体颜色?我只是在寻找一个简单的解决方案,但如果您还想建议如何将其重写为 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>";