Almost finished login/register page

This commit is contained in:
Joey Lai
2017-01-18 12:35:41 +01:00
parent 51378bf386
commit afcd048260
7 changed files with 113 additions and 111 deletions

View File

@@ -10,9 +10,9 @@ function getSettings() {
`birthdate`,
`bio`,
`profilepicture`
FROM
FROM
`user`
WHERE
WHERE
`userID` = :userID
");
@@ -43,4 +43,4 @@ function updateSettings() {
$stmt->bindParam(":userID", $_SESSION["userID"]);
$stmt->execute();
}
}