php cake在html中获取单选按钮的值,然后传递给控制器

时间:2017-03-30 05:44:01

标签: php html cakephp

我需要帮助获取单选按钮的值并将其用作php cake controller中的变量。

              <li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="1">a</label></li>
          <li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="2">b</label></li>
          <li class="search-pref-list-items__item"><label><input type="radio" name="pref" value="3">c</label></li>

我已经尝试了$ this-&gt; request-&gt;数据,但它仅适用于文本框, $ _GET []和$ _POST []现在也在工作

我将如何做到这一点?

1 个答案:

答案 0 :(得分:0)

嗨Rey Norbert Besmonte,

您需要按照cakephp方法创建单选按钮。 请按照下面的方式参考我的代码,按照cakephp框架标准创建单选按钮。

$options = array('a'=>'1','b'=>'2','c'=>'3');
$attributes = array('div' => 'input', 'type' => 'radio', 'options' => $options,'class' => 'search-pref-list-items__item' ,'default' => '1');
echo $this->Form->radio('Filed Name',$attributes);

因此,您需要从代码中删除并放置代码。

希望这会对你有所帮助。