Ok I have like 30 rows of info, where only 3 field needs to be in table. The table goes by threes in 2's in <td>s before it needs to start a new tr.
<tr><td>Row1</td> <td>Row2</td> <td>Row3</td></tr>
Then it would notice three entries are up and do the next three,
<tr><td>Row4</td> <td>Row5</td> <td>Row6</td></tr>
Then again,:
<tr><td>Row7</td> <td>Row8</td> <td>Row9</td></tr>
Until all the entries are used up. I am not good at arrays at all, and would not know at all how to accomplish this. But the sql would be "Select * from check_mark order by name.
Here is one example of a td:
<INPUT type=checkbox value= $value
name=$call_name>$name
So for each row inside a td will be this information. Thanks alot for any who decide to help me.