I am querying a database and outputting the results to a html page. I want to display the results in a table with two columns as follows:
<table>
<tr>
<td> First Result Here</td>
<td> Second Result Here</td>
</tr>
<tr>
<td> Third Result Here</td>
<td> Fourth Result Here etc etc..</td>
</tr>
</table>
Is this possible and if so can anyone tell me the code on how to get this table format.