LoginSignup
1
1

More than 5 years have passed since last update.

CakePHP2でラジオボタン縦並び

Posted at

やりたいこと

スクリーンショット 0026-11-25 午後8.06.57.png

普通にかいたらこうなってしまう

スクリーンショット 0026-11-25 午後8.07.15.png

コード

<?php
$options = array('M' => '男性', 'F' => '女性');
$attributes = array('separator' => '<br>');
echo $this->Form->radio('gender', $options, $attributes);
?>

separatorとかあるの初めてしった。

1
1
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
1
1