2015年3月19日 星期四

[CodeIgniter]Form_Helper_下拉選單

//=====================================
//            Controller
//=====================================
 public function __construct()
 {
  parent::__construct();
 
  //載入 Loading this Helper
  $this->load->helper('form');
   
 }


public function index()
{


  $options = array(
                  '1'  => 'Small Shirt',
                  '2'    => 'Medium Shirt',
                  '3'   => 'Large Shirt',
                  '4' => 'Extra Large Shirt',
                );

        $data['options'] = $options;
$this->load->view('manage/info_addnew', $data);  //載入View

}

//=====================================
//           View
//=====================================

                    名稱      項目       已選擇            自行定義
echo form_dropdown('shirts', $options, $selected,'class="add2" id="my_id"');


沒有留言:

張貼留言