当我上传文件并使用codeigniter
在数据库中存储详细信息时,我收到此错误这是我的控制器
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个filds
字段类型排序规则
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行
INSERT INTO suggestion
_master(sug_id
,emp_id
,sug_name
,course_id
,sub_id
,link
)VALUES( NULL,'1','test','1','1','file_link [soflo在发布确切链接时显示错误]')
文件名:C:\ wamp \ www \ CMC \ system \ database \ DB_driver.php
行号:330
你能在这里发现什么问题吗?请帮忙
谢谢和问候 Dibyendu
答案 0 :(得分:4)
INSERT INTO `suggestion _master`..
如果表名和列名包含空格,则添加反引号,但表名中的空格不正确。