A better idea, unlike Hermes' answer, would be to edit the ./export.php file (Mind you: not db_export.php ).
On line 724 (in phpMyAdmin 4.0.4) you will find the lines:
if (! $export_plugin->exportDBCreate($db)) { break; }
You can comment or delete them to skip the creation of database creation statements (which, in my opinion, are also more accurate than the two selected lines in the export).
Same:
/* if (! $export_plugin->exportDBCreate($db)) { break; } */
The above lines apply only to exporting one database (on line 720 you will find: } elseif ($export_type == 'database') { ). Thus, you will not interrupt the full export of servers.
Jaap moolenaar
source share