Skip to content

Instantly share code, notes, and snippets.

@rncrtr
Created April 30, 2013 18:19
Show Gist options
  • Save rncrtr/5490747 to your computer and use it in GitHub Desktop.
Save rncrtr/5490747 to your computer and use it in GitHub Desktop.
#php #mysql #pdo #connect
<?php
// fill in this info
$dbname = 'dbname';
$server = 'localhost';
$user = 'root';
$pass = 'root';
// db handle
$dbh = new PDO('mysql:host='.$server.'; dbname='.$dbname, $user, $pass, array(PDO::ATTR_PERSISTENT => true));
// close connection
$dbh = null;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment