I'm in process of switching my hosts and want to move the existing PHPBT database as well. I use MySQL. Is there any easy (or maybe not that easy) way to do this.
Pavel (SQL dummy:)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm in process of switching my hosts and want to move the existing PHPBT database as well. I use MySQL. Is there any easy (or maybe not that easy) way to do this.
Pavel (SQL dummy:)
Create the new database on the new host, then on the command line...
mysqldump --opt -h oldhost old_database_name | mysql -h newhost new_database_name