LoginSignup
0
0

More than 5 years have passed since last update.

Cake2: フォームヘルパーのradioのサンプル

Posted at

項目ごとにspan要素で包括したラジオボタンを表示するサンプル。

たぶん、もっとスマートな方法やライブラリがあるorz

cake2_form_radio.php
echo '<p class="label">質問項目</p>';
echo '<span class="radio-set">';
echo $this->Form->radio('Model.form_name',
  array(
    'ああああ',
    'いいい',
    'ううううう',
    'ええええ',
    'おおお',
    'その他'
  ),
  array(
    'legend' => false,
    'default' => '0',
    'separator' => '</span><span class="radio-set">',
  )
);
echo '</span>';
echo $this->Form->error('form_name');
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0