Skip to content

Instantly share code, notes, and snippets.

View pastranastevenaz's full-sized avatar
🎯
Focusing

Steven Antonio pastranastevenaz

🎯
Focusing
View GitHub Profile
@micc83
micc83 / mysqldump.php
Created June 5, 2017 13:17
Simple PHP script to dump a MySql database
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
$database = 'db';
$user = 'user';
$pass = 'pass';
$host = 'localhost';