Welcome to the Cookbook

loading...

7.3.3.12 $options['default']

The original text for this section has changed since it was translated. Please help resolve this difference. You can:

More information about translations

select 型入力を組み合わせるために使用します。フォームがはじめに表示された時にデフォルトで選択された状態にする option をマークします。エラーが含まれたフォームの送信が行われた後は、選ばれた(あるいは変更された)値を保持します。

使用例:

<?php 
    echo $form->input('country', array('options'=>$countries, 'default'=>'US')); 
?>
  1. <?php
  2. echo $form->input('country', array('options'=>$countries, 'default'=>'US'));
  3. ?>