微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php- SQL语法错误

我试图将表单数据插入数据库中的表之一.要插入的数据是名称,电子邮件,当前日期和用户兴趣.
这是代码.

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);
   }
}

在提交表单时,显示以下错误

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

解决方法:

将’添加到值,因为其中一些是字符串

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

实际上,直接将参数写入sql一个不好的主意,最好使用prepared-statements来执行,避免使用SQL Injection

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐