I was wondering if anyone could help me with something.
I have an ajax bit that calls a function in my model.
But I, seemingly, cannot order an output on "model".
Below im function having problems with
function get_models_by_brand($tree = null)
{
$this->db->select('id, model');
if($tree != NULL){
$this->db->where('brand_id', $tree);
}
$query = $this->db->get('models');
$models = array();
if($query->result()){
foreach ($query->result() as $model) {
$models[$model->id] = $model->model;
}
return $models;
} else {
return FALSE;
}
}
source
share