I have a PHP-script which is supposed to display the result of a COUNT query for statistical purposes. The result should be the number of rows meeting the given condition, but I don't know how to display it.
I tried:
$result = mysql_query("select count(*)...",$db) ;
echo $result ;
Any ideas?
Thanks, Akos