Populate Dropdown List Using CodeIgniter

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:
  1. $this->load->helper('dropdown');
  2. $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 within the CodeIgniter framework.
To download the framework please visit Getting Started With CodeIgniter

0 comments:

Post a Comment

Don't Forget to comment