$tran = "START TRANSACTION;";
$tran_res = mysql_query($tran);
$qry_1 = "INSERT INTO docList (doc_ip , doc_country , doc_ref) VALUES ('$ip' , '$country' , '$http_ref');";
$res_1 = mysql_query($qry_1);
if(!$res_1)
die ("qry1 fail " . mysql_error());
$ins_id = mysql_insert_id();
if(!$ins_id)
die ("ins id fail " . mysql_error());
echo "<b>$ins_id</b>";
$qry_2 = "INSERT INTO docContent (doc_id , cont_date , cont_title , cont_aim , cont_obj , cont_theory , cont_sw , cont_code) VALUES ('$ins_id' , '$dt' , '$title' , '$aim' , '$obj' , '$th' , '$sw' , '$code');";
$res_2 = mysql_query($qry_2);
if(!$res_2)
die("qry2 fail " . mysql_error()); `
的上方將返回下面的錯誤執行:PHP - MySQL的交易執行錯誤
2 qry fail
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'login'); if($query->num_rows()>0) return $query->result_array(); } ' at line 1
在效果$qry_2
執行失敗,但我感到這是錯誤困惑顯示(錯誤提示中提到的第1行沒有這樣的代碼)。此外,查詢($qry_2
)在MySql控制檯中正確執行。
貌似你不消毒的變量。 – JJJ
@Juhana你是對的!它現在工作。 – AFV