当前位置:   article > 正文

mysql查看服务器版本sql_您的SQL语法有错误;查看与您的MySQL服务器版本对应的手册,以便在附近使用正确的语法...

你的sql语法有错误;检查对应于mysql服务器版本的手册,以获得正确的语法来使用near

我有这样的代码将数据插入到数据库中,但即使我已经多次检查过该语法,我仍然会收到此错误,任何人都可以帮助我吗?

错误:

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 '

Add Another Question

Manage Students

Home

';

mysql_close($connectdb);

?>

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号