php5 mysqlの操作で質問なのです。

select count(*) from table
の結果を表示させるにはどうしたらよいのでしょうか?

$sql = "select count(*) from table";
$result = mysql_query($sql);
$count = mysql_num_rows($result);

if($count !=0){
$row=mysql_fetch_array($result);

ここからどうするのでしょうか?


すみません、よろしくお願いいたします。