Skip to content

Instantly share code, notes, and snippets.

@NoMan2000
Created December 10, 2013 04:57
Show Gist options
  • Save NoMan2000/7885914 to your computer and use it in GitHub Desktop.
Save NoMan2000/7885914 to your computer and use it in GitHub Desktop.
PDO PHP
<?php
try {
$db = new PDO("mysql:host=" . DB_HOST . ";dbname=" . DB_NAME .";port=" . DB_PORT,DB_USER,DB_PASS);
$db->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION);
$db->exec("SET NAMES 'utf8'");
} catch (Exception $e) {
echo "Could not connect to the database.";
exit;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment