Updated files

This commit is contained in:
RobinNixon
2021-04-18 11:18:28 +01:00
parent aefe77f6e8
commit f63a81074d
187 changed files with 1694 additions and 254 deletions
+2 -2
View File
@@ -5,9 +5,9 @@
{
$pdo = new PDO($attr, $user, $pass, $opts);
}
catch (\PDOException $e)
catch (PDOException $e)
{
throw new \PDOException($e->getMessage(), (int)$e->getCode());
throw new PDOException($e->getMessage(), (int)$e->getCode());
}
$query = "UPDATE cats SET name='Charlie' WHERE name='Charly'";