このコードを使用してフォントの色を変更するにはどうすればよいですか? 私は単純な解決策を探しているだけですが、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>";