File size: 700 Bytes
9aba585
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
$servername = "localhost";
$username = "root";
$password = " ";
$dbname = "typroject";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Get data from the form
$username = $_POST['username'];
$email = $_POST['email'];
$password = $_POST['password'];


// Insert data into the database
$sql = "INSERT INTO registration (username, password, email) VALUES ('$username','$email', '$password', )";

if ($conn->query($sql) === TRUE) {
    echo "Registration Successfully";
} else {
    echo "Error: " . $sql . "<br>" . $conn->error;
}

$conn->close();
?>