Reputation: 41
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
Reputation: 2136
echo $this->Form->input('email', array('label' => 'Your Label'));
Upvotes: 2