我使用插入在MySQL數據庫中的數據下面的代碼數據在MySQL數據庫中插入不工作
<?php
$con = mysql_connect("surveyipad.db.6420177.hostedresource.com","test","test");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("surveyipad", $con);
$response_id=$_POST['response_id'];
$participant_id=$_POST['participant_id']
$question_id=$_POST['question_id'];
$answer_text=$_POST['answer_text'];
echo($response_id);
$query=("INSERT INTO survey_question_responses
(response_id,participant_id,question_id,answer_option)
VALUES ('$response_id', '$participant_id','$question_id','$answer_option')");
mysql_query($query,$con);
printf("Records inserted: %d\n", mysql_affected_rows());
echo($response_id)
?>
我在MySQL表就像
RESPONSE_ID,participant_id,question_id,answer_option_answer_text
究竟發生了什麼問題? – Valerij
如果有什麼不工作,**檢查錯誤**。例如使用'echo mysql_error()'。 – deceze
是的,它是給錯誤像解析錯誤:語法錯誤,意想不到的T_VARIABLE在/home/content/i/h/u/ihus235/html/cs/emrapp/SyncSurveyTest.php在線16 –