Hello, probably a simple question,
How would I count up all the rows in a table, then display the results?
Thanks much
$sql = "SELECT count(*) FROM table"; $res = mysql_query($sql); $row = mysql_fetch_row($res); echo $row[0];
Great =) Thanks!