|
<?php |
|
session_start(); |
|
if (!isset($_SESSION['userId'])) { |
|
if ( |
|
isset($_POST['username']) && |
|
isset($_POST['mailuid']) && |
|
isset($_POST['password']) && |
|
isset($_POST['managername']) && |
|
isset($_POST['teamname']) |
|
) { |
|
|
|
$username = $_POST['username']; |
|
$mailuid = $_POST['mailuid']; |
|
$password = $_POST['password']; |
|
$managername = $_POST['managername']; |
|
$teamname = $_POST['teamname']; |
|
$mysqli = new mysqli("127.0.0.1", "root", "rootpasswordsupersafestuff", "logintest", 3306); |
|
if ($mysqli->connect_errno) { |
|
echo "Failed to connect to MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error; |
|
} else { |
|
$sql = "INSERT INTO users (uidUsers, username, password, managername, teamname) VALUES (?,?,?,?,?)"; |
|
$stmt = mysqli_stmt_init($mysqli); |
|
if (!mysqli_stmt_prepare($stmt, $sql)){ |
|
echo "MySQL Error"; |
|
} else { |
|
$hashpwd = password_hash($password, PASSWORD_DEFAULT); |
|
mysqli_stmt_bind_param($stmt, "sssss", $username, $mailuid, $hashpwd, $managername, $teamname); |
|
mysqli_stmt_execute($stmt); |
|
echo 'Success!<br>'; |
|
echo "Username: $username <br>"; |
|
echo "Mail: $mailuid <br>"; |
|
echo "Hashpass: $hashpwd <br>"; |
|
echo "Mngr: $managername <br>"; |
|
echo "Team: $teamname <br>"; |
|
} |
|
} |
|
} else { |
|
echo "Fill form please:<br>"; |
|
} |
|
|
|
?> |
|
|
|
<form method="POST"> |
|
<input placeholder="Username" type="text" name="username" /> |
|
<input placeholder="Email" type="email" name="mailuid" /> |
|
<input placeholder="Password" type="password" name="password" /> |
|
<input placeholder="Managername" type="text" name="managername" /> |
|
<input placeholder="Teamname" type="text" name="teamname" /> |
|
<input type="submit" value="signup" /> |
|
</form> |
|
|
|
<a href="login.php">Go login</a> |
|
|
|
<?php |
|
} else { |
|
header('Location: login.php'); |
|
exit(); |
|
} |