PHP Code To Change Font Color in Table Cell
Posted: Fri Oct 30, 2009 6:50 pm
I would appreciate help with the following snippet of my php code. I am just trying to change the font size in the row marked in red. The color is white, but I am unable to make the font larger.
Thank you very much.
Thank you very much.
Code: Select all
echo "<table>
<tr>
<th></th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
[color=#BF0000]echo "<td> <font color=#FFFFFF>" . $row['text'] . "</font> </td>";[/color]
echo "</tr>";
}
echo "</table>";