赞
踩
我有这样的代码将数据插入到数据库中,但即使我已经多次检查过该语法,我仍然会收到此错误,任何人都可以帮助我吗?
错误:
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 'cou ?','output','input','new line', 'break','output','Multiable_Choise')' at line 4
$connectdb = mysql_connect('localhost','root','sara', true ) or die ("Not Connect");
if (!$connectdb)
{
die('Could not connect :'. mysql_errno());
}
$selestdb = mysql_select_db('iexa', $connectdb) or die ("not selected database");
$chois_1 = array();
$chois_2 = array();
$chois_3 = array();
$chois_4 = array();
$Question = array();
$correct = array();
$correct['Correct_Answer']= mysql_real_escape_string($_POST['Correct_Answer']) ;
$Question['Question']= mysql_real_escape_string($_POST['Question']) ;
$chois_1['Choise_1']= mysql_real_escape_string($_POST['Choise_1']) ;
$chois_2['Choise_2']= mysql_real_escape_string($_POST['Choise_2']) ;
$chois_3['Choise_3'] = mysql_real_escape_string($_POST['Choise_3']) ;
$chois_4['Choise_4'] = mysql_real_escape_string($_POST['Choise_4']) ;
if (isset($_POST['E_No'])) {
$E_no = $_POST['E_No'];
}
if (isset($_REQUEST['courseID'])) {
$courseId = $_REQUEST['courseID'];
}
$sql ="INSERT INTO question_bank (C_ID ,E_No , Question , Choise_1 , Choise_2 , Choise_3 , Choise_4 , Correct_Answer
, Question_Type )
VALUES
('$courseId','$E_no', {$Question['Question']}','{$chois_1['Choise_1']}','{$chois_2['Choise_2']}','{$chois_3['Choise_3']}',
'{$chois_4['Choise_4']}','{$correct['Correct_Answer']}','$_POST[Question_Type]')
";
if (!mysql_query($sql,$connectdb))
{
die ('Error :'.mysql_error());
}
echo "The Qustion is saved";
echo '
';
mysql_close($connectdb);
?>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。