Hi.
How can I check how many results is returned from mysql db?
Im using this code to fill a table with results from the mysql db:
$qry_result = mysql_query($query) or die(mysql_error());
while($row = mysql_fetch_array($qry_result))
Im want to display how many search results there was on the users search criteria...
Thanks