<?php | |
//Thank: https://www.w3schools.com/php/php_mysql_insert.asp | |
$servername = "localhost"; //ใช้ localhost กรณี server อยู่บน online | |
$username = "พิมพ์ที่นี่"; //username ของ DirectAdmin/phpMyAdmin | |
$password = "พิมพ์ที่นี่"; //password ของ DirectAdmin/phpMyAdmin | |
$dbname = "test"; //ชื่อ database | |
// Create connection | |
$conn = new mysqli($servername, $username, $password, $dbname); | |
// Check connection | |
if ($conn->connect_error) { | |
die("Connection failed: " . $conn->connect_error); | |
} | |
//Get data from user | |
$name = $_POST['name']; | |
$pass = $_POST['password']; | |
if(empty($name) || empty($pass)){ | |
die("Please enter name and password!"); | |
} | |
//Add data to table | |
$sql = "INSERT INTO user_login_test (id, name, password) VALUES (NULL, '$name', '$pass')"; | |
//Check result | |
if ($conn->query($sql) === TRUE) { | |
echo "New record created successfully"; | |
} else { | |
echo "Error: " . $sql . "<br>" . $conn->error; | |
} | |
$conn->close(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment