Welcome Guest, Not a member yet? Register   Sign In
Date is being set to 0000-00-00 00:00:00, no solutions are working
#9

[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);  
}


Messages In This Thread
Date is being set to 0000-00-00 00:00:00, no solutions are working - by El Forum - 02-27-2012, 05:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB