I am trying to echo out a table that looks more professional than what I am currentl outputting. I want the top row to be bold and centered and the rest of the table to have a background color. Where in the following snippet would I make taht happen?
echo "<table border=1><align=center>\n";
echo "<tr><td>Trip Name</td><td>Region</td><td>Country</td> <td>Description</td><td>Cost</td><td>Duration</td><td>Lodging</td><td>Grade</td></tr>";
while ($myrow = mysql_fetch_row($result))
{
printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n", $myrow[1], $myrow[2], $myrow[3], $myrow[4], $myrow[5], $myrow[6], $myrow[7], $myrow[8], $myrow[9]);
}
echo "</table>\n";