Reputation: 4552
When I am trying to export my DB as a .sql file, downloaded popup showing export.php file. Wamp version and OS : wamp 2.0 and win 7.
But Same version wamp server perfectly working with XP.
Is it OS based issue? Can someone suggest a solution?
Upvotes: 0
Views: 2355
Reputation: 1
left click on wampserver icon >> phpmyadmin >> on the left panel, click on the database that you wish to export >> export >> select the format you want it in (default sql) >> GO !!!
Upvotes: -1
Reputation: 720
You can export your database by using command line interface. On windows, run cmd.exe, then type
mysqldump -u USER -p DATABASE > filename.sql
Remember to replace USER by your username and DATABASE by your database name, you'll be promted to enter your password.
Upvotes: 2