[eluser]InsiteFX[/eluser]
for datetime you can use this to set it.
EXAMPLE:
Code:
public function add_post()
{
$now = date("Y-m-d H:i:s");
$data = array(
'title' => $this->input->post('title', TRUE),
'tags' => $this->input->post('tags', TRUE),
'status' => $this->input->post('status', TRUE),
'body' => $this->input->post('body', TRUE),
'category_id' => $this->input->post('category_id', TRUE),
'user_id' => $this->session->userdata('user_id'),
'pub_date' => $now,
);
$this->db->insert('posts', $data);
}