Dester Dezzods
Dester Dezzods

Reputation: 1535

use different field name in cakephp form

is it possible to change the name of a input field in cakephp? I tried with virtual fields, but it does shows the original column name from database.

can someone help me with this?

Upvotes: 0

Views: 346

Answers (1)

Rene Polo
Rene Polo

Reputation: 831

its pretty easy.. use it like this:

<?php echo $this->Form->input('theField', array( 'label'=>'Change the Text')); ?>

instead of this:

<?php echo $this->Form->input('theField'); ?>

i hope this helps! :)

Upvotes: 1

Related Questions