I'm trying to load data in the form_dropdown. the object fornecedores has the data. How do i load and array and put into the dropdown
<?php
foreach ($fornecedores as $fornecedor) {
}
echo form_dropdown('fornecedores', null,
set_value('fornecedores'), ['class' => 'form-control']);
?>
here's my model, where i load my object fornecedores:
public function getRecords() {
$query = $this->db->get('fornecedores');
if ($query->num_rows() > 0) {
return $query->result();
}
}