Modal for register

This commit is contained in:
Joey Lai
2017-01-26 16:17:58 +01:00
parent 96f70e1a11
commit dbdb12cca0
4 changed files with 317 additions and 15 deletions

View File

@@ -13,6 +13,7 @@ function getUser() {
`email` LIKE :username
");
$stmt->bindParam(":username", test_input($_POST["user"]));
$stmt->execute();
return $stmt->fetch(PDO::FETCH_ASSOC);
}