私は CakePHP でかなり複雑なフォームを作成しようとしています。ユーザーには、ラベルの代わりに入力ボックスを持つラジオ ボタンが表示され、基本的に次のように出力されます。
<input type="radio" val="1" /><input type="text" />
<br />
<input type="radio" val="2" /><input type="text" />
<br />
<input type="radio" val="3" /><input type="text" />
<br />
<input type="radio" val="4" /><input type="text" />
私は SecurityComponent を使用しているため、FormHelper を使用したいと思います。Cake 以外のフォームを使用すると問題が発生します。