我使用了红色字体,但在我的页面中它显示为绿色。
<?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>';
} 
?>