,這裏是我的控制器代碼不能通過值控制器功能笨
public function create($postdate)
{
$this->load->helper('form');
$this->load->library('form_validation');
$this->load->helper('url');
// $postdate = $this->uri->segment(3);
echo $postdate;
$data['title'] = 'Hey there!';
$this->form_validation->set_rules('title', 'Title', 'required');
$this->form_validation->set_rules('text', 'Text', 'required');
if ($this->form_validation->run() === FALSE)
{
$this->load->view('templates/header', $data);
$this->load->view('pages/create',);
$this->load->view('templates/footer');
}
else
{
$this->news_model->set_news($postdate = 20160824);
$this->load->view('pages/success');
}
}
,這裏是我的模型代碼:
public function set_news($postdate)
{
$this->load->helper('url');
$slug = url_title($this->input->post('title'), 'dash', TRUE);
$data = array(
'title' => $this->input->post('title'),
'slug' => $slug,
'text' => $this->input->post('text'),
'room_date' => $postdate
);
return $this->db->insert('news', $data);
}
但該模型沒有將價值$踵到數據庫。它插入的默認值是20160824,其中作爲控制器中的回顯顯示作爲參數傳遞的值,即我想要插入數據庫中的(正確的)值。
列room_date的數據類型是? –
我是codeignitor的新手,因此我提交表單來創建()本身。這導致了問題。解決方案。 –