Tabular formatting of DB query results?
Posted: Fri Jun 16, 2006 9:19 am
Hi all,
I am trying to move on from simple tabular output:
To more complex tables - specifically, I would like to display results as:
This is so that the results of a db query on a catalogue do not simply display 1 result per table row, but 3.
Can anyone help me with the php fro this?
Thanks in advance!
I am trying to move on from simple tabular output:
Code: Select all
<table><tr>
<td>$data</td>
</tr></table>Code: Select all
<table><tr colspan = "3">
<td>$data</td><td>$data</td><td>$data</td>
</tr></table>Can anyone help me with the php fro this?
Thanks in advance!