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
You could export the table structures only like this:
mysqldump -u root -p --no-data mydb > backup_info.sql
then drop the whole database, recreate it and restore from the backup.
Easy enough to script the whole thing.