调用未定义的方法CI_Input

时间:2017-11-04 01:37:50

标签: php codeigniter

这是我得到的错误,我无法弄清楚它有什么问题。

public function create()


public function create()
{
$data['title'] = 'Create Category';
$this->form_validation->set_rules('cat_name', 'Category Name', 'required');
if($this->form_validation->run() === FALSE)
{
   $this->load->view('templates/header', $data);     
   $this->load->view('category/create', $data);
   $this->load->view('templates/footer', $data);
}

else{
    $this->category_model->create_category();
    redirect('category');
}

this is my controller

public function create_category()
{
$cat_name = url_title($this->input->category('cat_name'), 'dash', TRUE); // this is line 23, by the way..

$data = array(
    'cat_name' => $cat_name
);

return $this->db->insert('category', $data);
}

this is my model

spacesLn

该消息似乎指向第23行,但我认为它没有任何问题。

我是新手,并且一直试图制作一个小型网络应用程序。

0 个答案:

没有答案