How can I empty the contents of all tables in my database in phpMyAdmin without dropping any of the tables in the database?
Since I do this several times an hour while i
Create a SQL script with multiple DELETE statements (one for each table) and execute it.
Get into phpMyAdmin and select the database that you want. Select the SQL tab and paste the SQL script into the window. Hit Go.
Look here too:
Drop all tables from a MySQL Database without deletion