Here's the deal:
I want to layout a page saying "you have N results to your search" at the top.
Next I will have a static HTML table row with the labels. Then I will loop through the recordset as follows:
while($rowData = mysql_fetch_rows($theQuery)){ ?>
(write out a table row with the values in the correct columns)
<?php }
Trouble here is, what is the most simple way to get the count of the query without having to call the query twice or is that possible?
Sam Fullman
Compass Point Media