[eluser]Cristian Gilè[/eluser]
In your controller create an array like this:
Code:
$data['first_combo'] = array('foo'=>'bar','test'=>'testing123');
$data['second_combo'] = array('foo'=>'bar');
$data['third_combo'] = array();
and pass this data to the view
Code:
$this->load->view('tile',$data);
In the view you can process each array and check if are empty. If not populate your combos.