|
|
|
เพิ่มข้อมูลลง Database ไม่ได้ครับเชื่อมต่อได้นะครับเเต่ข้อมูลไม่เข้าไป |
|
|
|
|
|
|
|
มันขึ้นว่าทำรายการผิดพลาดตลอดเลยครับ รบกวนช่วยด้วยนะครับ ฟอมอื่นก็พิมเเนวนนี้ก็ใช้ได้ปกติครับ
Code (PHP)
<form name="frmregis" action="regis.php?submit=submit" method="post">
<label>ชื่อผู้ใช้(Username) : </label>
<input type="tetx" name="txtUsername">
<label ><font color="red">*กรอกชื่อผู้ใช้</font></label>
<label>รหัสผ่าน(Password) : </label>
<input type="text" name="txtPassword">
<label ><font color="red">*กรอกหรัสผ่าน</font></label>
<br>
<label>ชื่อ : </label>
<input type="text" name="txtName">
<label ><font color="red">*กรอกชื่อ</font></label>
<label>นามสกุล : </label>
<input type="text" name="txtSurname">
<label ><font color="red">*กรอกนามสกุล</font></label>
<br>
<label>เลขบัตรประชาชน : </label>
<input type="text" name="txtID_Card">
<label ><font color="red">*กรอกเลขบัตรประชาชน</font></label>
<label>วัน/เดือน/ปี เกิด : </label>
<script type="text/javascript">
$(function(){
$("#dateInput").datepicker({
dateFormat: 'dd-M-yy'});
});
</script>
<input type="text" name="txtDate" id="dateInput"/>
<label ><font color="red">*กรอกวัน/เดือน/ปี เกิด</font></label>
<br>
<label>เพศ</label>
<select name ="txtSex">
<option value="ขาย">ชาย</option>
<option value="หญิง">หญิง</option>
</select>
<label>ที่อยู่</label>
<input type="tetx" name="txtAddress" style="height:50px;">
<label ><font color="red">*กรอกที่อยู่ตามบัตรประชาชน</font></label>
<br>
<label>หมายเลขโทรศัพท์</label>
<input type="text" name="txtTel">
<label ><font color="red">*กรอกหมายเลขโทรศัพท์</font></label>
<label>อีเมลล์</label>
<input type="text" name="txtEmail">
<label >@</label>
<select name ="txtEmail2">
<option value ="hotmail">Hotmail.com</option>
<option value ="gmail">Gmail.com</option>
<option value ="yahoo">Yahoo.com</option>
<option value ="outlook">Outlook.com</option>
</select>
<label ><font color="red">*กรอกอีเมลล์</font></label>
<br>
<button type="submit" name="submit" value="regis">ยืนยัน</button>
</form>
อันนี้โค้ดเชื่อมต่อ database ครับ
Code (PHP)
<?
include 'connect.php';
if($_POST["submit"]){
$strSQL = "INSERT INTO tbUser2 (Username,Password,Name,Surname,ID_Card,Birthday,Sex,Address,Tel,Email,Email2)
VALUES ( '".$_POST["txtID_Room"]."',
'".$_POST["txtUsername"]."',
'".$_POST["txtPassword"]."',
'".$_POST["txtName"]."',
'".$_POST["txtSurname"]."',
'".$_POST["txtID_Card"]."',
'".$_POST["txtBirthday"]."',
'".$_POST["txtSex"]."',
'".$_POST["txtAddress"]."',
'".$_POST["txtTel"]."',
'".$_POST["txtEmail"]."',
'".$_POST["txtEmail2"]."')";
$result = mysql_query($strSQL);
if($result)
{
?>
<script language="JavaScript">
alert("ทำรายการเสร็จสิ้น ");
window.location.href = "regis.php";
</script>
<?
}else{
?>
<script language="JavaScript">
alert("รายการผิดพลาด ");
window.location.href = "regis.php";
</script>
<?
}
}
?>
ผมลงโค้ดในหน้าเดียวกันครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2016-06-06 09:48:52 |
By :
tawichzaman |
View :
848 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ฟิลด์ที่ระบมี 11 ฟิลด์ แต่ค่าที่จะใส่ลงฐานข้อมูลมี 12 ค่า ลองเช็คดูครับ
|
|
|
|
|
Date :
2016-06-06 10:28:11 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|