32 lines
		
	
	
		
			854 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			854 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
session_start();
 | 
						|
require_once 'config.php';
 | 
						|
 | 
						|
// Handle registration form submission
 | 
						|
if ($_SERVER["REQUEST_METHOD"] == "POST") {
 | 
						|
    $username = $_POST['username'];
 | 
						|
    $email = $_POST['email'];
 | 
						|
    $password = $_POST['password'];
 | 
						|
 | 
						|
    // Hash the password
 | 
						|
    $hashed_password = password_hash($password, PASSWORD_DEFAULT);
 | 
						|
 | 
						|
    // 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);
 | 
						|
 | 
						|
    // Execute the statement
 | 
						|
    $result = $stmt->execute();
 | 
						|
 | 
						|
    if ($result) {
 | 
						|
        echo "Registration successful. <a href='login.html'>Login here</a>.";
 | 
						|
    } else {
 | 
						|
        echo "Error: " . $mysqli->error;
 | 
						|
    }
 | 
						|
 | 
						|
    // Close the statement
 | 
						|
    $stmt->close();
 | 
						|
}
 | 
						|
?>
 |