Yii Framework- Creating hidden field
//
In Yii framework we can create a hidden field using model and without model as described below
1. Creating hidden field without model.
echo CHtml::hiddenField('name' , 'value', array('id' => 'name'));
2. Creating hidden field with model.
echo $form->hiddenField($model,
Read More about it from the following link : http://coding-guru.com/yii-framework-creating-hidden-field/ posted by Maz
Yii Framework- Creating hidden field
Tags:
0 comments: