Skip to content

Instantly share code, notes, and snippets.

@matteomattei
matteomattei / backup_mysql.php
Last active October 13, 2020 00:47
Backup MySQL schema and data from PHP
<?php
$DBHOST = 'localhost';
$DBNAME = 'test';
$DBUSER = 'username';
$DBPASS = 'password';
$compression = TRUE;
$dst_dir = '/tmp';
$DBH = new PDO("mysql:host=".$DBHOST.";dbname=".$DBNAME."; charset=utf8", $DBUSER, $DBPASS);