Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用して入力フィールドを作成するには Cakephp が必要$this->Form->input()で、このフィールド パラメータに Html 属性 - を追加しますrequired="required"。
$this->Form->input()
required="required"
どうやってやるの?
ドキュメントに従ってください。2番目の引数は、すべてのオプション(htmlおよびその他)を取ります。
$this->Form->input('field_name', array('required'=>true));