Skip to content

Instantly share code, notes, and snippets.

@krisives
Created February 26, 2014 06:40
Show Gist options
  • Save krisives/9224732 to your computer and use it in GitHub Desktop.
Save krisives/9224732 to your computer and use it in GitHub Desktop.
public function getPDO() {
if (isset($this->pdo)) {
return $this->pdo;
}
$this->pdo = new PDO(
"mysql:dbname=mtg",
'root',
''
);
$this->pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
return $this->pdo;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment