I success run script below to show current rows in my table...
But my problem is if the table had more than 10 and above rows data how can the script show only 10 rows per page.
<?
include '../dbase.php';
$query = "SELECT * FROM community";
$result = mysql_db_query($dbname,$query);
$row = mysql_fetch_array($result);
$name = $row["name"];
$address = $row["address"];
$email = $row["email"];
$phone = $row["phone"];
$age = $row["age"];
?>
<li>
Name : <? echo $name; ?><br>
Address : <? echo $address; ?><br>
Email : <? echo $email; ?><br>
Phone Number : <? echo $phone; ?><br>
Age : <? echo $age; ?><br>
</li>