|
|
|
PHP Add Data & Save เพื่อ insert ข้อมูล ลงใน Database ช่วยดูโค้ดหน่อยค่ะ มันไม่ error แต่ มันไม่ insert ลง Database ซักที |
|
|
|
|
|
|
|
PHP Add Data & Save เพื่อ insert ข้อมูล ลงใน Database ช่วยดูโค้ดหน่อยค่ะ มันไม่ error แต่ มันไม่ insert ลง Database ซักที
นี่ Code นะคะ >> *** บางทีมันจะ error ด้วยอะคะ ตรงข้อความที่อยู่ใน if
Code (PHP)
<? include ('conn.php') ;
$ball= $_POST['selectball'];
$country= $_POST["selectcountry"];
$artwork= $_POST['selectArtwort'];
$LotID =mysql_result(mysql_query("Select Max(substr(LotID,-2))+1 as MaxID from qc_record"),0,"MaxID");//เลือกเอาค่า id ที่มากที่สุดในฐานข้อมูลและบวก 1 เข้าไปด้วยเลย
if($LotID ==''){ // ถ้าได้เป็นค่าว่าง หรือ null ก็แสดงว่ายังไม่มีข้อมูลในฐานข้อมูล
$LotID ="L01";
}else{
$LotID ="L".sprintf("%02d",$LotID );//ถ้าไม่ใช่ค่าว่าง
}
$str = "INSERT INTO qc_record" ;
$str .= "(LotID,Date,Time,ModelID,CountryID,Po,Amountball,Temperatur,Humidity,Standard,Airleaktime,Pressure,Minpressure,
Presmore,SpaceLR,Space_aside,EmpID,Artwork)";
$str .="VALUES ";
$str .="('".$LotID."','".$_POST['txtdate']."','".$_POST['txtTime']."','".$ball."','".$country."','".$_POST['txtpo']."'";
$str .=",'".$_POST['txtamount']."','".$_POST['txttem']."','".$_POST['txthum']."','".$_POST['selectstd']."'";
$str.= ",'".$_POST['txtairleak']."','".$_POST['txtpress']."','".$_POST['txtminpress']."','".$_POST['txtpressvalue']."'";
$str.=",'".$_POST['txtLR']."','".$_POST['txtasside']."','".$_POST['txtid']."','".$artwork."')";
mysql_query("SET NAMES utf8");
$dbquery = mysql_query($str) ;
if($dbquery)
{
echo "save" ;
}
else
{
echo "error";
}
?>
</body>
</html>
Tag : PHP, MySQL, HTML/CSS, Tablets
|
|
|
|
|
|
Date :
2013-05-28 12:58:04 |
By :
mintminny |
View :
1123 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนแบบนี้ ลอง echo $str; มาดูหน่อยคับ
|
|
|
|
|
Date :
2013-05-28 14:20:05 |
By :
teez1232002 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
วิธีแก้ปัญหาพวกนี้แบบ่ง่ายสุดๆๆ เลยนะ่ครับ echo ตัวแปรก่อนที่จะ เข้า mysql_query อ่ะครับ แล้วลองเอาตัวแปรที่ได้จากบนเวป นั้น เอาไปใส่ใน mysql โดยตรงเลยอ่ะครับ มันจะมี error ฟ้องให้อยู่ว่าผิดตรงไหนครับ
|
|
|
|
|
Date :
2013-05-28 14:54:25 |
By :
nut_ch31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เข้ามาแล้วตกใจหมดเลย ^^"
|
|
|
|
|
Date :
2013-05-28 15:02:31 |
By :
{Cyberman} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-05-29 03:38:09 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|