Skip to content

Instantly share code, notes, and snippets.

@nyl2k8
Last active October 15, 2018 08:16
Show Gist options
  • Save nyl2k8/ed728c3ec298339fdd0f736386332519 to your computer and use it in GitHub Desktop.
Save nyl2k8/ed728c3ec298339fdd0f736386332519 to your computer and use it in GitHub Desktop.
PDO Try Catch
try {
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
// Add PDO query below here.
if($sth->execute()){
$arr = $sth->errorInfo();
print_r($arr);
}
}
catch (PDOException $e) {
echo $e->getMessage();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment