I used the font color red, but in my page it showing green color.
<?php
include('connect-db.php');
$result = mysql_query("SELECT * FROM players") or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
echo '<font color=\"red\">';
echo $row['firstname'] ;
echo '</font>';
echo ':';
echo $row['lastname'] ;
echo '<br><br>';
}
?>
echos, one for each line. You could use aHEREDOC, for instance.colorattribute in your<font>tag with astyleattribute something like this<font style='color:red'></font>.