|
|
|
สอบถาม โค๊ด php บันทึกเลขบัตรประชาชน ลงฐานข้อมูล mysql |
|
|
|
|
|
|
|
<form action="id_add.php" method="post">
<input name="idcard" id="idcard" type="text" />
<button type="submit" class="submit-btn">
บันทึกข้อมูล
</button>
</form>
<?php
session_start();
$servername = "localhost";
$username = "xxxx";
$password = "xxxx";
$dbname = "xxxx";
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
mysqli_set_charset($conn,"utf8");
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$ids = $_POST['ids'];
$idcard = $_POST['idcard'];
$sql="INSERT INTO card (ids,id_card1,id_card2,id_card3) VALUES (0,'$idcard','$idcard','$idcard')";
if ($conn->query($sql) === TRUE) {
echo '<center><img src="image/loading.gif"></center>';
echo "<meta http-equiv='refresh' content='4; url=form.html'>" ;
} else {
echo "<script>";
echo "alert(\"บันทึกข้อมูลไม่สำเร็จ\");";
echo "window.history.back()";
echo "</script>";
}
$conn->close();
?>
ในตารางเป็นแบบนี้ครับ
|
|
|
|
|
Date :
2021-01-11 04:35:10 |
By :
chayutc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สอบถามผู้รู้ครับ.
ส่งจาก form
ต้องการให้ตัวเลขแยกไปแต่ละช่องของฐานข้อมูล
|
|
|
|
|
Date :
2021-01-11 04:46:29 |
By :
chayutc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำแบบ array หรือ character เช่น
...VALUES (0,'$idcard[0]','$idcard[1]','$idcard[2]')";
|
|
|
|
|
Date :
2021-01-11 06:18:44 |
By :
Lakornworld |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ เดี๋ยวจะลองเอาไปทำดูนะครับ
|
|
|
|
|
Date :
2021-05-22 08:22:41 |
By :
ssebkk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|