Hi
I have a simple select and I am using: $result = mysql_query($Sql);
how can I know how much rows I got?
Thanks, Assaf
$result = mysql_query($sql);
$count = mysql_num_rows($result);
echo $count;