Code Snippets Php

Connect to the databasedb_connect();
// Query the database and get the count$result = mysql_query("SELECT * FROM tablename");
$num_rows = mysql_num_rows($result);
// Display the resultsecho $num_rows;?>