Welcome Guest, Not a member yet? Register   Sign In
Active record WHERE clause not working?
#14

[eluser]InsiteFX[/eluser]
This is how I use where in my blog model and it works for me, not sure if it will help you.

Also if using CI 2.0 make sure you download the latest version from the Reactor.

Code:
function get_post($id)
{
    $data = array();

    $this->db->where('id', $id);
    $this->db->limit(1);

    $query = $this->db->get('posts');

    if ($query->num_rows() > 0)
    {
        $data = $query->row_array();
    }

    $query->free_result();
    return $data;
}

InsiteFX


Messages In This Thread
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:27 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:41 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:43 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:45 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 09:49 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:02 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:13 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:27 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:38 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 10:51 AM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 12:09 PM
Active record WHERE clause not working? - by El Forum - 03-08-2011, 03:37 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 04:03 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 04:51 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:00 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:46 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:54 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:55 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:56 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:04 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:12 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:34 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:39 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:47 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 09:41 AM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 05:41 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:17 PM
Active record WHERE clause not working? - by El Forum - 03-09-2011, 06:23 PM
Active record WHERE clause not working? - by El Forum - 05-12-2011, 03:03 AM



Theme © iAndrew 2016 - Forum software by © MyBB