我希望在 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" />
我想使用 FormHelper,因为我正在使用 SecurityComponent,如果您使用非 Cake 表单,它就会出现问题。