Hi, basically I have this piece of php which will count and display the amount of rows within a table:
<?php
$link = mysql_connect("localhost","****","****");
mysql_select_db("****", $link);
$result = mysql_query("SELECT * FROM lincoln", $link);
$num_rows = mysql_num_rows($result);
echo...