gpt4 book ai didi

php - 错误号 : 1064 in codeigniter

转载 作者:太空宇宙 更新时间:2023-11-03 10:57:52 25 4
gpt4 key购买 nike

每当我使用 codeigniter 上传文件并将详细信息存储在数据库中时,我都会收到此错误

这是我的 Controller

    public function sugsn_up()
{
if ( $this->session->userdata('login_state') == FALSE )
$this->load->view('faculty/facultylog1_view');
else
{
$config['upload_path'] = './suggestion/';
$config['allowed_types'] = 'pdf|doc|docx|txt';
$config['max_size'] = '10000000';
$emp_id=$this->session->userdata('emp_id');
$this->load->library('upload', $config);
$tname='subject_master';
$res['sub']=$this->faculty_model->return_rec($tname);
$tname='course_master';
$res['crse']=$this->faculty_model->return_rec($tname);
if ( ! $this->upload->do_upload())
{
$error = array('error' => $this->upload->display_errors());
$this->load->view('faculty/up_sugsn', $error,$res);
}
else
{
$data = array('upload_data' => $this->upload->data());
$path=base_url().'attendence/'.$data['upload_data']['file_name'];
$sdata=array('sug_id'=>NULL,
'emp_id'=>$emp_id,
'sug_name'=>$_POST['sugsn_name'],
'course_id'=> $_POST['cid'],
'sub_id'=> $_POST['sid'],
'link'=>$path
);
$this->faculty_model->sugsn_up($sdata);
$this->load->view('faculty/upload_success', $data);
}
}
}

这是我的模型

    public function sugsn_up($sdata)
{
$this->db->insert('suggestion _master',$sdata);
}

我的建议_master表有6个字段

字段类型整理 sug_id bigint(20)
emp_id bigint(20)
sug_name 文本
course_id bigint(20)
sub_id bigint(20)
链接文字

我收到这个错误

发生数据库错误

错误号:1064

您的 SQL 语法有误;查看与您的 MySQL 服务器版本对应的手册,了解在 '_master (sug_id, emp_id, sug_name, 附近使用的正确语法course_id, sub_id, link) VALUES (' 在第 1 行

插入建议 _master(sug_idemp_idsug_namecourse_id , sub_id, link) VALUES (NULL, '1', 'test', '1', '1', 'file_link[soflo 在发布确切链接时显示错误]')

文件名:C:\wamp\www\CMC\system\database\DB_driver.php

行号:330

你能发现这里有什么问题吗?请帮忙

感谢和问候迪比恩杜

最佳答案

INSERT INTO `suggestion _master`..

如果表名和列名包含空格,请添加反引号,但表名中的空格是不行的。

关于php - 错误号 : 1064 in codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18706479/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com