dtv55860 2018-07-09 05:18
浏览 57
已采纳

php-错误的sql语法

I am trying to insert form data into one of the tables in my database. Data to be inserted are name, email, current date and users interests. Here is the code.

if (isset($_POST['name'])) {
   $name = $_POST['name'];
   $email = $_POST['email'];
   $intrests = $_POST['intrests'];
   $default_intrests = array("mob","pcs","scm","oth");
   $interests = "";
   if (count($intrests) == 0) {
      $interests = implode(",", $default_intrests);
   }
   else {
          $interests = implode(",", $intrests);
   }

   $sqll="insert into subscriptions (name,email,subdate,intrests) values ($name,$email,CURRENT_DATE, $interests)";
   $insert = mysqli_query($link, $sqll);
   if (!$insert) {
      echo mysqli_error($link);
   }
}

On form submit, the following error is displayed:

You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'dsa,asdf@qwer.com,CURRENT_DATE, mob)' at line 1

  • 写回答

4条回答 默认 最新

  • dqy006150 2018-07-09 05:20
    关注

    Add ' to the value since some of them are string

     $sqll="insert into subscriptions (name,email,subdate,intrests)
         values ('$name','$email',CURRENT_DATE, '$interests')";
    

    In fact,it's a bad idea to write parameter into to your sql directly,you had better to use prepared-statements to do it and avoid SQL Injection

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?