Hello everyone anyone can please help me I want to show total number of records search by string at the top of my page. Please help me how can I do this? [FONT="] Thanks in advance[/FONT]
Not sure if this is gonna help much, your question isn't the most direct! mysql_query("SELECT * FROM tablename"); is the query to select everything from a table
You can count the number of results using following function $total_number_of_records = count($fetched_records_from_db);
first select the database $total_number_of_records = count($fetched_records_from_db); insert query display result..