5
Quote:
MySQL Database Restore
Both of these native MySQL scripts will export and import your database with ease.
This method works generally better than phpMyAdmin if you have a lot of data to import.
People without CLI/shell access to their server can also try to put the MySQL command in a php script:
- Put the sql dump as well as the following 'import.php' in the same folder
- Display the import.php file with your browser
system( 'mysql --host=database host IP ...see jdseymour's article... < filename.sql' );
?>
skalpa.>
Any intelligent fool can make things bigger, and more complex. It takes a touch of genius, a lot of courage, to move in the opposite direction.
Two things are infinite: the universe and human stupidity; and I'm not sure about the 1st one (A.Einstein)