Reputation: 4400
Is there an easy php function to backup a database (or set of tables within a database) to another mysql installation or within the same database but to other tables?
Upvotes: 2
Views: 3390
Reputation: 659
You can try this
http://davidwalsh.name/backup-mysql-database-php
modify the code to back it up to other database.
Upvotes: 4
Reputation: 45019
No but you could use PHPmyAdmin or any other MySQL tool which supports export. You might also write your own.
Upvotes: 2