Add files via upload

This commit is contained in:
wiecktobi 2018-06-08 17:26:29 +02:00 committed by GitHub
parent 24d2e76e30
commit e311cfa6dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
login.php Normal file
View File

@ -0,0 +1,22 @@
<?php
require('../dbConnect.php');
$name = $database->real_escape_string($_POST['registerName']);
$pswd = $database->real_escape_string($_POST['registerPassword']);
$email = $database->real_escape_string($_POST['registerMail']);
$abfrage = "SELECT password WHERE $name=user";
if ($pswd == $abfrage) {
// code..
echo "HI";
}
// if ($abfrage == "") {
$stmt = $database->prepare("INSERT INTO user(user, email, password) VALUES (?,?,?)");
$stmt->bind_param("sss", $name, $email, $pswd);
$stmt->execute();
$stmt->close();
// }
?>