Depends on how your code is written, but if you are looping through your results, then you can just increment a variable for every row that you print and then display that variable.
$count = 0;
while ($row = mysql_fetch_row($result)) {
$count++;
}
print "Found $count Rows";