I have this, where the text 'NUMBER' is, I'd like the PHP to insert a number, starting with 1 and increase by 1 for each row.
<? while ( ! $table_rs->EOF ) { ?>
<tr>
<td align="center">NUMBER</td>
<td align="center"><?=($table_rs->Fields("team_color"))?></td>
</tr>
<? $table_rs->MoveNext(); } ?>