In this code you’ll learn on how to populate a dropdown list using CodeIgniter. The list will be pulled from the function called “buildCountryDropdown” using helper.
The function is being called from the controller and then passed it to the view.
Here’s the code to call the helper and populate the array with values from our function:
$this->load->helper('dropdown'); $this->data['country'] = buildCountryDropdown('country', $this->input->post('country'));
When passed to the view, all you have to do is use this code:
<?php echo $country; ??>
Attached herewith is the application folder
Comments
Great tutorial
Add new comment