Skip to content

Instantly share code, notes, and snippets.

@SMacEwan
Created September 18, 2012 23:13
Show Gist options
  • Save SMacEwan/3746653 to your computer and use it in GitHub Desktop.
Save SMacEwan/3746653 to your computer and use it in GitHub Desktop.
PHP Database connection template
<?php
//Replace ALL the things!
$hostname = 'localhost';
$database = 'testdb';
$username = 'root';
$password = 'root';
$dbh = new PDO('mysql:host=' . $hostname . ';dbname=' . $database, $username, $password);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment