|
|
|
การ insert ข้อมูลมันฟ้องแบบนี้ตรวจสอบยังไงว่าผิดอะไร |
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<form id="form1" name="form1" method="post" action="addsave.php">
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3" align="center">เพิ่มข้อมูล</td>
</tr>
<tr>
<td width="296" align="right">Username</td>
<td width="10">:</td>
<td width="294" align="left"><input type="text" name="username" id="username" /></td>
</tr>
<tr>
<td align="right">Password</td>
<td>:</td>
<td align="left"><input type="password" name="password" id="password" /></td>
</tr>
<tr>
<td align="right">ชื่อ-สกุล</td>
<td>:</td>
<td align="left"><input type="text" name="name" id="name" /></td>
</tr>
<tr>
<td align="right">ที่อยุ่</td>
<td>:</td>
<td align="left"><textarea name="address" id="address" cols="45" rows="5"></textarea></td>
</tr>
<tr>
<td align="right">โทรศัพท์</td>
<td>:</td>
<td align="left"><input type="text" name="tel" id="tel" /></td>
</tr>
<tr>
<td align="right">เพศ</td>
<td>:</td>
<td align="left"><input type="radio" name="sex" id="radio" value="ชาย" />
ชาย
<input type="radio" name="sex" id="radio2" value="หญิง" />
หญิง</td>
</tr>
<tr>
<td align="right">สถานะ</td>
<td>:</td>
<td align="left"><select name="status" id="status">
<option>เลือกสถานะ</option>
<option value="โสด">โสด</option>
<option value="ไม่โสด">ไม่โสด</option>
</select></td>
</tr>
<tr>
<td colspan="3" align="center"><input type="submit" name="button" id="button" value="บันทึก" />
<input type="reset" name="button2" id="button2" value="ลบ" /></td>
</tr>
</table>
</form>
</body>
</html>
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?php
include('conn.inc.php');
$strSQL = "INSERT INTO member ";
$strSQL .="(username,password,name,address,tel,sex,status) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["username"]."','".$_POST["password"]."','".$_POST["name"]."','".$_POST["address"]."','".$_POST["tel"]."','".$_POST["sex"]."','".$_POST["status"]."') ";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
?>
</body>
</html>
ผลการรัน
Error Save [INSERT INTO member (username,password,name,address,tel,sex,status) VALUES ('1','1','1','1','1','ชาย','โสด')]
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-12-01 15:53:07 |
By :
kooyarut |
View :
824 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ดูบรรทัด [INSERT INTO member (username,password,name,address,tel,sex,status) VALUES ('1','1','1','1','1','ชาย','โสด')] ได้เลยครับ ต้องมีอะไรผิด
เช่น ไม่มีชื่อฟิลด์ในฐานข้อมูล หรือ เขียนชื่อฟิลด์-ชื่อตารางผิดครับ
|
|
|
|
|
Date :
2015-12-01 16:24:18 |
By :
benzsara |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|