Create signup.PHP
This commit is contained in:
parent
7fd917cb59
commit
14ca536e18
1 changed files with 25 additions and 0 deletions
25
signup.PHP
Normal file
25
signup.PHP
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
<?php
|
||||||
|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||||
|
// Retrieve form data
|
||||||
|
$username = $_POST["username"];
|
||||||
|
$email = $_POST["email"];
|
||||||
|
$password = $_POST["password"];
|
||||||
|
$confirmPassword = $_POST["confirm-password"];
|
||||||
|
|
||||||
|
// Validate form data (you can add more complex validation here)
|
||||||
|
if (empty($username) || empty($email) || empty($password) || empty($confirmPassword)) {
|
||||||
|
echo "Please fill in all the fields.";
|
||||||
|
} elseif ($password !== $confirmPassword) {
|
||||||
|
echo "Passwords do not match.";
|
||||||
|
} else {
|
||||||
|
// All validation passed, process the signup here (e.g., store data in a database)
|
||||||
|
// For demonstration purposes, let's assume signup is successful.
|
||||||
|
// In a real-world scenario, you should store user data securely and handle errors properly.
|
||||||
|
echo "Sign up successful! Welcome, $username!";
|
||||||
|
|
||||||
|
// Redirect the user to a different page
|
||||||
|
header("Location: welcome.php");
|
||||||
|
exit(); // Make sure to exit after redirection to prevent further execution.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Add table
Reference in a new issue