signup.php
<?php
require "functions.php";
if($_SERVER['REQUEST_METHOD'] == "POST")
{
$username = addslashes($_POST['username']);
$email = addslashes($_POST['email']);
$password = addslashes($_POST['password']);
$date = date('Y-m-d H:i:s');
$query = "insert into users (username,email,password,date) values ('$username','$email','$password','$date')";
$result = mysqli_query($con,$query);
header("Location: login.php");
die;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Signup - my website</title>
</head>
<body>
<?php require "header.php";?>
<div style="margin: auto;max-width: 600px">
<h2 style="text-align: center;">Signup</h2>
<form method="post" style="margin: auto;padding:10px;">
<input type="text" name="username" placeholder="Username" required><br>
<input type="email" name="email" placeholder="Email" required><br>
<input type="text" name="password" placeholder="Password" required><br>
<button>Signup</button>
</form>
</div>
<?php require "footer.php";?>
</body>
</html>
Comments
Post a Comment