Membuat Combobox atau Drop Down box di CodeIgniter sungguh mudah, fleksibel dan cepat. Pertama kita buat dulu controllerna di application/controllers, saya beri nama dropdown.php yang isinya

<?php
class Dropdown extends CI_Controller {          
	function __construct()
	{
 		parent::__construct();
		$this->load->helper('form');
	}	
	function index()
	{
		$this->load->view('combobox_view');
	}
}

Buat sebuah file bernama combobox_view.php di folder application/view file ini untuk menampilkan combobox yang kita buat

<html>
<body>
<?php
$provinsi = array(
                  '1'  => 'Nanggro Aceh Darussalam',
                  '2'    => 'Sumatera Utara',
                  '3'   => 'Sumatera Barat',
                  '4'   => 'Riau',
                  '5'   => 'Kepulauan Riau',
                  '6'   => 'Jambi',
                );
?>
 
<hr>
<hr>
<h2>Disini Dropdown/ Combobox nya</h2>
<?php echo form_dropdown('provinsi', $provinsi);?>
</body>
</html>

yang muncul di combobox adalah file yang urutan no 1 yaitu Nanggro Aceh Darussalam. Bila anda mau mengubah, urutan (default) menjadi Sumatera Utara ubah baris

<?php echo form_dropdown('provinsi', $provinsi);?>

menjadi

<?php echo form_dropdown('provinsi', $provinsi, '2');?>

combobox codeigniter

Download :

Join the Conversation

3 Comments

Your email address will not be published. Required fields are marked *

  1. Klo ngambil datanya dari database gmn mas bro?
    Sama multi connection (Artinya dropdown combobox A klo dipilih menghasilkan/ngeluarin data di combo box B data yng keluar sesuai dengan kategori yang dipilih tadi di combo box A terus begitu juga klo milih di combo box B data di combo box C kluar sesuai pilihan data di combo box B).

    Ribet ya?