-
MySQLDumper is a Free PHP and Perl based tool for backing up MySQL database and Tables. With this script you can easily dump your data into a backup file, and restore it. This is the main function, but this script can also be used to create MySQL databases, edit, delete, create Tables in MySQL, and run SQL statements (SQL Browser like phpMyAdmin).
MySQLDumper can write the data directly into a compressed .gz file. The restore script is able to read this file directly without unpacking it. You can also use the script without compression (sql /text format), but using Gzip saves a lot of bandwidth.
You can configure the script to automatically send the backup file to an FTP account or your email adress.
-
Download MySQLDumper 1.24.4 (640 KB).
The installation is very easy. Unpack the archive on your server, then change "config.php" to CHMOD 0777, and "work" directory to CHMOD 0755.
Start MySQLDumper in your Browser by accessing for example: "http://webserver/msd1.24.4/" to complete the setup, just follow the instructions.
- For more details, see the "
Credits / Help" menu in the MySQLDumper page script.
Screenshots
• Home page project:
MySQLDumper Web Site.
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which tag is used in <table> to create table header cell?
<thead> <th> <td><table><tr>
<th>Title 1</th>
<th>Title 2</th>
</tr></table>
Which CSS property sets the distance between lines?
line-height word-spacing margin.some_class {
line-height: 150%;
}
Which function opens a new browser window.
alert() confirm() open()document.getElementById("id_button").onclick = function(){
window.open("http://coursesweb.net/");
}
Indicate the PHP function that returns an array with names of the files and folders inside a directory.
mkdir() scandir() readdir()$ar_dir = scandir("dir_name");
var_export($ar_dir);