[eluser]InsiteFX[/eluser]
Code:
public function add_post()
{
$now = date("Y-m-d H:i:s");
$data = array(
'title' => $this->input->post('title'),
'tags' => $this->input->post('tags'),
'status' => $this->input->post('status'),
'body' => $this->input->post('body'),
'category_id' => $this->input->post('id'),
'user_id' => $this->session->userdata('user_id'),
'pub_date' => $now
);
$this->db->insert('posts', $data);
}
See pub_date
InsiteFX