it's way too big, i was trying to find a function and yes i did search.
what i need to do is to have it display 2 results next to one another and then 2 more below that and so on... if it were plain html it would look like this
<table>
<!--while($row = mysql_fetch_array($somequery)) {-->
<!--would go here i would presume-->
<tr>
<td>
Info 1
</td>
<td>
Info 2
</td></tr>
<tr>
<td>
Info 3
</td>
<td>
Info 4
</td></tr>
<!--} end your while-->
</table>
now i'm pretty sure that there would be some logical way to do this, as i've seen ti done plenty of times, just never done it myself.
do you use 2 queires maybe ?
any help is greatly appreciated!