I've got a set of data that i want outputted into an HTML table with 3 columns and however many number of rows it takes for all of the data to be retrieved.
so i hope that it looks something like this in the end..
<tr>
<td>Name1</td>
<td>Name2</td>
<td>Name3</td>
</tr>
<tr>
<td>Name4</td>
<td>Name5</td>
<td>Name6</td>
....
And on and on until there are no more names... Currently i can display them properly with a SELECT statement for each row of data that i want. However doing that is not very efficient especially for 60 people.
I can get one row with every name on it via a different method, or one row for each new person.
Source Code
Display