i need to have a table that will have loop through the alphabet in succession for each row and for the columns i need to loop through 15 numbers per row up to the maximum of 238. each td cell with a number will need to have a radio button associated with it that carries the value of the number itself.
for example:
<tr>
<td>A</td><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td>
</tr>
<tr>
<td>B</td><td>6</td><td>7</td><td>8</td><td>9</td><td>10</td>
</tr>
when the user selects the radio button for a particular number (say number 8) and then press submit, that number will be stored into a mysql table under the seat column id.
now, when each new user visits this form, the same thing should happen as above, EXCEPT this time the table should not allow the seats that are currently in the database to be selected.
for example:
<tr>
<td>A</td><td>1</td><td>2</td><td>3</td><td>4</td><td>5</td>
</tr>
<tr>
<td>B</td><td>6</td><td>7</td><td>SOLD</td><td>9</td><td>10</td>
</tr>
i also need to be able to define various sizes of spacer cells in between each <td> and each <tr> at various alternating places throughout the table layout...
i have been working on this for the past 2 weeks and am still at ground zero....i am past my deadline and need this done as soon as possible....can someone here please help me?