View Single Post
  #1  
Old 07-21-2005, 10:19 PM
SoapinTrucker's Avatar
SoapinTrucker SoapinTrucker is offline
Member
 
Join Date: Jul 2005
Location: Fresno, California
Posts: 38
Arrow Show total links in database

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!

Code:
<?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.
Reply With Quote