1

我有这段将数据插入数据库的代码,但是即使我已经多次检查了语法,我仍然会收到这个错误,有人可以帮助我吗?
错误:

您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在 'cou ?'、'output'、'input'、'new line'、'break'、'output'、'Multiable_Choise')' 附近使用的正确语法4

<?php
$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 '  <br />
          <a href="question.htm" >Add Another Question</a> <br />
          <a href="ManageStudents.htm">Manage Students</a> <br />
          <a href="Instructor.htm">Home</a>
          ';
          mysql_close($connectdb);
           ?>
4

1 回答 1

2

前面有一个 ' 缺失{$Question['Question']}'

于 2012-04-20T23:23:25.827 回答