Hi Folks,
Please help me with this - I need to change the text sizes and colour but do not know where to insert this information.
You can see what is currently happening at www.gnjgf.co.za/entryformmysql.php
!------------------------------------------------------------------->
<! THIS SECTION FETCHES THE INFORMATION FROM THE TABLE >
<!------------------------------------------------------------------->
<?php
while($row=mysql_fetch_array($result)){
echo "</td><td>";
echo $row['name'];
echo "</td><td>";
echo $row['surname'];
echo "</td><td>";
echo $row['my_handicap_is'];
echo "</td><td>";
echo $row['i_wish_to_play'];
echo "</td></tr>";
}
echo "</table>";
?>
Please help me with this - I need to change the text sizes and colour but do not know where to insert this information.
You can see what is currently happening at www.gnjgf.co.za/entryformmysql.php
!------------------------------------------------------------------->
<! THIS SECTION FETCHES THE INFORMATION FROM THE TABLE >
<!------------------------------------------------------------------->
<?php
while($row=mysql_fetch_array($result)){
echo "</td><td>";
echo $row['name'];
echo "</td><td>";
echo $row['surname'];
echo "</td><td>";
echo $row['my_handicap_is'];
echo "</td><td>";
echo $row['i_wish_to_play'];
echo "</td></tr>";
}
echo "</table>";
?>
Comment