Sir Mac
Sir Mac

Reputation: 41

How to overwrite the default label generated by the form helper?

How can override the default label of cakephp replacing it on my desire label. my VIEW code in cakePHP is this:

echo $this->Form->create('Add');
echo "<h2>Email</h2>"; //Email
echo $this->Form->input('email'); //email
echo $this->Form->submit('submit');
echo $this->Form->end();

Upvotes: 1

Views: 37

Answers (1)

502_Geek
502_Geek

Reputation: 2136

echo $this->Form->input('email', array('label' => 'Your Label'));

Upvotes: 2

Related Questions