PHP Code To Change Font Color in Table Cell

Posted on 16th Feb 2014 by admin

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.

Line number On/Off | Expand/Contract echo "<table><tr><th></th></tr>";while($row = mysql_fetch_array($result)){echo "<tr>";echo "<td> <font color=#FFFFFF>" . $row['text'] . "</font> </td>";echo "</tr>";}echo "</table>";

Other forums