Hi Folks,
Does anyone know a function for counting how many rows are returned from a Select Query (using MySQL). I have been using the following but there must be an easier way.
$Lcount=0;
while ($myrow = mysql_fetch_array($qry_det))
{ $Lcount++; }
Thanks for your help.
SC: