CakePHP FormHelperでhidden属性を設定する

ユーザーIDなどのラベルなどで使用する変更できない値などを渡す場合に便利です。

echo $this->Form->hidden('User.cust_code' ,array('value' => $this->request->data['User']['cust_code']));
echo $this->Form->hidden('User.role' ,array('value' => $this->request->data['User']['role']));

タイトルとURLをコピーしました