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 start with this query
SELECT T.* FROM INFORMATION_SCHEMA.tables T WHERE T.table_type = 'BASE TABLE'
And iterate through those results to build a dynamic SQL string to the tune of 'DELETE FROM ' + T.Table_Name