我得到这样的错误: -
中的错误INSERT into images_tbl ('images_path','submission_date') values('images/09-08-2014-1407586340.jpg','2014-08-09')
错误:
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 ''images_path','submission_date')
values('images/09-08-2014-1407586340.jpg',' at line 1
以下是我收到错误的查询:
$query_upload="INSERT into images_tbl ('images_path','submission_date') values('".$target_path."','".date("Y-m-d")."')";
答案 0 :(得分:2)
你应该使用反引号来引用MySQL中的列名,而不是单引号。但是你的列名根本不需要引号。使用
INSERT into images_tbl (images_path,submission_date) values('images/09-08-2014-1407586340.jpg','2014-08-09')
代替。