Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add a textfield in form with out model class in YII?

Tags:

php

yii

I need to add a text field in YII form in which i am not specify any model class name. But I need to process that value in the action method inside the controller class.

ie

I need to add a text field as

<div class="row">
    <input type="text" name="test" id="test" >
</div>

I add text field as

<?php echo $form->textField($model['groupModel'],'group_name',array('size'=>60,'maxlength'=>128)); ?>

But i do't want to specify any model name with the new text field.. Thanks in advance...

like image 493
Damodaran Avatar asked Feb 24 '11 12:02

Damodaran


2 Answers

This should work

<div class="row">
    <?php echo CHtml::textField('User[textvalue]', '', array('size'=>60,'maxlength'=>128)); ?>                
</div>

This will give you the text value inside $_POST['User'] as $_POST['User']['textvalue']

like image 98
Shekhar Avatar answered Nov 11 '22 16:11

Shekhar


You can add a Chtml textfield with an id

It will the show in the: $_POST['mytextField']

like image 6
Mikelangelo Avatar answered Nov 11 '22 14:11

Mikelangelo