aWebDeveloper
aWebDeveloper

Reputation: 38422

Cakephp Form Helper

How can i achieve the following using cakephp form helper

<input type="text"  required> 

Upvotes: 2

Views: 708

Answers (1)

deceze
deceze

Reputation: 522597

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

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

Upvotes: 6

Related Questions