I need a way to easily export and then import data in a MySQL table from a remote server to my home server. I don’t have direct access to the server, and no utilities such as phpMyAdmin are installed. I do, however, have the ability to put PHP scripts on the server.
How do I get at the data?
I ask this question purely to record my way to do it
You could use SQL for this:
Then just point a browser or FTP client at the directory/file (backups/mytable.sql). This is also a nice way to do incremental backups, given the filename a timestamp for example.
To get it back in to your DataBase from that file you can use:
The other option is to use PHP to invoke a system command on the server and run ‘mysqldump’: