PHP code example of veeraj / php-mysql-db-backup
1. Go to this page and download the library: Download veeraj/php-mysql-db-backup library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
veeraj / php-mysql-db-backup example snippets
$sql = new SqlBackup('localhost', 'rashmibansal', 'root', '123456', __DIR__);
if ($sql->run()) {
echo 'Backup created successfully. File size is ' . $sql->fileSize;
}