Michael
Michael

Reputation: 4400

PHP MySQL Database Backup

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

Answers (2)

Laurynas Tretjakovas
Laurynas Tretjakovas

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

str
str

Reputation: 45019

No but you could use PHPmyAdmin or any other MySQL tool which supports export. You might also write your own.

Upvotes: 2

Related Questions