Can I have multiple where conditions on fuel_model and greater than or equal to?

edited February 2014 in Bug Reports
Never mind...solved my problem like so:

$CI =& get_instance();
$CI->load->model('events_model');
$events = $CI->events_model->find_all(array('published' => true, 'start_date >=' => datetime_now()), 'start_date asc', 3);
Sign In or Register to comment.