Search code examples
phpcakephpform-helpers

Cakephp Form Helper


How can i achieve the following using cakephp form helper

<input type="text"  required> 

Solution

  • $this->Form->input('foo', array('required' => 'required'));
    

    This will set the required attribute in longhand required="required" format, but will have the same effect.