PDA

View Full Version : Show total links in database


SoapinTrucker
07-21-2005, 10:19 PM
I don't remember where I got this, but this snippet will
display a total of rows (links) in your database. I did NOT write this!

<?php
//our SQL query
$sql_query = "SELECT * FROM your_table_name ";
//store the SQL query in the result variable
$result = mysql_query($sql_query);
$rows = mysql_num_rows($result);
//output total
echo $rows;
?>

Replace "your_table_name" with the name of the table you use to search in tdsearch.