Oh yeah, no semi colon. Cheers!
Using CSS & the following code, how do I display the 3 piece of information retrieved from the database, in different colours?
$record = 1;
while($row = mysql_fetch_array($result))
{
$sex = substr($row['Sex'], 0, 1);
echo "<tr>";
echo "<td>" . $record++ . ") " . $row['Name'] . "<br>";
echo $row['Species'] . " (" . $sex . ")" . "</td>";
echo "</tr>";
}
echo "</table>";