I've been trying to display the number of rows using this code but it keep says
1 Rows which is wrong
<?php
            $link = mysql_connect("localhost", "gamin1_forum", "password123");
            mysql_select_db("gamin1_forumdb", $link);
            $result = mysql_query("SELECT COUNT(*) FROM smf_personal_messages", $link);
            $num_rows = mysql_num_rows($result);
            echo "$num_rows Rows";
            ?>
Rows are approximately 1443 but it kept saying 1
 
     
    