I am building a footy tipping website and would like to auto-populate a table with the weeks teams.
Can anyone point me to a good reference guide on the net for accessing and modifying table elements.
For Example:
The table looked like this before selecting the round:
<table>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
and so forth...one row for each game.
After selecting the round....I would access a database to extract the teams for each game in each round and modify the table to look like:
table>
<tr>
<td>Jets</td>
<td>Reds</td>
</tr>
...and so on
Can anyone point me to a good reference guide on the net for accessing and modifying table elements.
For Example:
The table looked like this before selecting the round:
<table>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
and so forth...one row for each game.
After selecting the round....I would access a database to extract the teams for each game in each round and modify the table to look like:
table>
<tr>
<td>Jets</td>
<td>Reds</td>
</tr>
...and so on