So, I have this field that I want to keep in my form.
For this purpose I tried the following:
<?php echo $this->Form->input('group_id', array('hiddenField' => true, 'value'=> 2)); ?>
I also tried:
<?php echo $this->Form->input('group_id', array('options' => array('hiddenField'=> 'true'), 'value'=>2 )); ?>
As I still see the input field.
What am I doing wrong?
php cakephp
Marc rasmussen
source share