watch.twip-network.org/register.php

37 lines
1.1 KiB
PHP
Raw Normal View History

2024-01-20 16:04:27 +01:00
<?php
session_start();
require_once 'config.php';
// Handle registration form submission
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Validate that required fields are provided
if (empty($_POST['username']) || empty($_POST['email']) || empty($_POST['password'])) {
echo "Please provide all required fields (username, email, and password).";
} else {
$username = $_POST['username'];
$email = $_POST['email'];
$password = $_POST['password'];
2024-01-20 16:04:27 +01:00
// Hash the password
$hashed_password = password_hash($password, PASSWORD_DEFAULT);
2024-01-20 16:04:27 +01:00
// Prepare and execute the SQL query using prepared statements
$query = "INSERT INTO users (username, email, password) VALUES (?, ?, ?)";
$stmt = $mysqli->prepare($query);
$stmt->bind_param("sss", $username, $email, $hashed_password);
2024-01-20 16:35:03 +01:00
// Execute the statement
$result = $stmt->execute();
2024-01-20 16:04:27 +01:00
if ($result) {
2024-01-20 17:18:54 +01:00
echo "Registration successful. <a href='pages/login.html'>Login here</a>.";
} else {
echo "Error: " . $mysqli->error;
}
2024-01-20 16:35:03 +01:00
// Close the statement
$stmt->close();
}
2024-01-20 16:04:27 +01:00
}
?>