亲爱的,这是我在xampp的代码:
$sql = "INSERT INTO oqc_defect ";
$sql.= "(Problem_date, Dept_found, Line, Shift, Time_found, Model, Serial_number, DIC, ";
$sql.= "Def_class, Reject_qty, Symptom, Cause, Correction, Corr_action_plan, ";
$sql.= "Eff_date) ";
$sql.= "VALUES ('";
$sql.= $Problem_date."','".$Dept_found."','".$Line."','".$Shift."','".$Time_found."','".$Model."','".$Serial_number."','".$DIC."','";
$sql.= $Def_class."','".$Reject_qty."','".$Symptom."','".$Cause."','".$Correction."','".$Corr_action_plan."','";
$sql.= $Eff_date."')";
我尝试向DB提交一些数据。在firebug节目“OK 2.6ms”,但我检查后我的数据库表仍然是空的。上面的代码不正确吗?
答案 0 :(得分:2)
尝试过这个吗?
$res = mysql_query($sql) or die(mysql_error());
答案 1 :(得分:0)
在构造查询后,只需回显查询。现在我们只能猜测查询的样子。
<?php
echo $sql;
?>