Код: Выделить всё
Код: Выделить всё
$this->db->select('*');
$this->db->from('products');
$this->db->order_by('product_name','ASC');
$getData = $this->db->get('');
if($getData->num_rows() > 0)
return $getData->result_array();
else
return null;
Код: Выделить всё
Pepsi
Coke
Mountain Dew
Подробнее здесь: https://stackoverflow.com/questions/117 ... m-an-array