|
|
|
ช่วยหาสาเหตุทีเซฟไม่ได้ ให้ที่ครับ ผมเขียนโค๊ดผิดตรงไหน เด็กใหม่ครับ |
|
|
|
|
|
|
|
Code (PHP)
<?
$objConnect = mysql_connect("localhost","root","") or die("Error Connect to Database");
$objDB = mysql_select_db("car");
$strSQL = "INSERT INTO datacar ";
$strSQL.="(idcar,car_name,model,type,coler,piston,horsepower,engine_number,vehicle_numbers,battery,volt,wheel,front_wheel,rear_wheel, type_rubber,width,long,high,weight,Load,factory,year,product_country,purchased_from,contract_number,price,type_oil,capacity) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtidcar"]."','".$_POST["txtcar_name"]."','".$_POST["txttype"]."' ";
$strSQL .=",'".$_POST["txtcoler"]."','".$_POST["txtpiston"]."','".$_POST["txthorsepower"]."' ";
$strSQL .=",'".$_POST["txtengine_number"]."','".$_POST["txtvehicle_numbers"]."','".$_POST["txtbattery"]."' ";
$strSQL .=",'".$_POST["txtvolt"]."','".$_POST["txtwheel"]."','".$_POST["txtfront_wheel"]."' ";
$strSQL .=",'".$_POST["txtrear_wheel"]."','".$_POST["txttype_rubber"]."','".$_POST["txtwidth"]."' ";
$strSQL .=",'".$_POST["txtlong"]."','".$_POST["txthigh"]."','".$_POST["txtweight"]."' ";
$strSQL .=",'".$_POST["txtLoad"]."','".$_POST["txtfactory"]."','".$_POST["txtyear"]."' ";
$strSQL .=",'".$_POST["txtproduct_country"]."','".$_POST["txtpurchased_from"]."','".$_POST["txtcontract_number"]."' ";
$strSQL .=",'".$_POST["txtprice"]."','".$_POST["txttype_oil"]."','".$_POST["txtcapacity"]."' )";
$objQuery = mysql_query($strSQL);
if($objQuery)
{
echo "บันทึกเรียบร้อยแล้วครับ";
}
else
{
echo "ไม่สามารถบันทึกได้ครับ [".$strSQL."]";
}
mysql_close($objConnect);
?>
</body>
</html>
พอดี ข้อมูลที่ต้องการใช้หลายตัวหน่อยอะครับ
รันมาแล้วเป็นอย่างนี้ ทดลองโดยการใส่ข้อมูล 111 ลองดูนะครับ ช่วยแก้ให้ทีนะครับ ท่านเทพทั้งหลาย ว่าผิดตรงไหน
Code
ไม่สามารถบันทึกได้ครับ [INSERT INTO datacar (idcar,car_name,model,type,coler, piston,horsepower,engine_number,vehicle_numbers, battery,volt,wheel,front_wheel,rear_wheel,type_rubber,width,long,high,weight,Load,factory, year,product_country,purchased_from,contract_number,price,type_oil,capacity) VALUES ('111','111','111' ,'111','111','111' ,'1111','111','111' ,'11','11','11' ,'11','111','11' ,'11','111','111' ,'111','111','1111' ,'111','111',' 111' ,'2222222','diesel','200' )]
Tag : PHP
|
|
|
|
|
|
Date :
2012-02-05 15:05:19 |
By :
preacher |
View :
942 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเพิ่ม or die mysql_error() เพื่อดูการ error ของการ query ดูครับ
Code (PHP)
$objQuery = mysql_query($strSQL) or die mysql_error();
|
|
|
|
|
Date :
2012-02-05 16:49:45 |
By :
iieszz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอลองก่อนนะครับ ขอบคุณครับ
|
ประวัติการแก้ไข 2012-02-05 20:07:00
|
|
|
|
Date :
2012-02-05 19:28:18 |
By :
preacher |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|