{Redirect to HomePage} $this->redirect(Yii::app()->homeUrl); {Redirect to Module 'Admin'} $this->redirect(array('/Admin')); {Redirect to Contorller/Action} $this->redirect(array('post/view'));
YII, form simple drop down <?php echo $form->dropDownList($model, 'sex', array('1' => 'male', '2' => 'female'), array('empty' => 'Select one of the following...') ); ?>