Welcome Guest, Not a member yet? Register   Sign In
Dropdown List from MySQL to HMTL <select>
#1

[eluser]cPage[/eluser]
//-- MODEL
Code:
function select_list($string)
{
  $q = $this->db->query('SELECT '.$string.' FROM '.$this->table);
  return $q->result_array();
}
//-- CONTROLLER
Code:
$data['myListClient'] = $this->client_model->select_list('id_client,client');
//-- VIEW
Code:
foreach( $myListClient as $row )
{
   $dd[$row['id_client']] = $row['client'];
}
echo form_dropdown('lstClient', $dd);


Messages In This Thread
Dropdown List from MySQL to HMTL <select> - by El Forum - 01-07-2013, 01:24 AM
Dropdown List from MySQL to HMTL <select> - by El Forum - 01-07-2013, 08:39 AM
Dropdown List from MySQL to HMTL <select> - by El Forum - 01-07-2013, 10:23 AM
Dropdown List from MySQL to HMTL <select> - by El Forum - 01-07-2013, 10:45 AM



Theme © iAndrew 2016 - Forum software by © MyBB