codeigniterのドロップダウン配列でset_select()(フォームヘルパーの一部)を使用するにはどうすればよいですか?
これは、ユーザーが選択したオプションを記憶するために使用されます。
$guide_options = array('investments' => 'Investments',
'wills' => 'Wills',
'tax-planning' => 'Tax planning',
'life-insurance' => 'Life insurance',
'currency-exchange' => 'Currency exchange',
'retirement-planning' => 'Retirement planning',
'international-healthcare' => 'International healthcare',
'savings-plans' => 'Savings plans',
'education-planning' => 'Education planning',
'sipps' => 'SIPPS',
'qrops' => 'QROPS',
'qnups' => 'QNUPS',
'mortgages' => 'Mortgages',
'other' => 'Other service'
);
echo form_dropdown('guide', $guide_options, 'investments');
ここにフォームヘルパーガイド:http://codeigniter.com/user_guide/helpers/form_helper.html