Use for questions about any version of Yii, an open-source MVC framework for writing web 2.0 applications in PHP5+
UserMasterController Code: public function actionUpdate($id){ $model=$this->loadModel($id); if(isset($_POST['UserMaster'])){ $model->attributes=$_POST['UserMaster']; $…
controller yii yii-componentsI create a menu like a Twitter Bootstrap navbar with CMenu widget: <?php $this->widget( 'zii.widgets.CMenu', …
html yii cmenuHow to get base URL in a Yii CConsoleApplication application? I tried Yii::app()->request->getBaseUrl(true) …
php yii console-application yii1.xI am working on a project which includes a REST API component. I have a controller dedicated to handling all …
yiiI need listbox of multiple selection in yii, i have code of form area but its saving to database as …
yii html-select yii-chtmlwe get stack trace when an error occurs in the execution, like in the following picture . see this I would …
php yii yii-extensionsI know that you can have a validation rule that applies only for one scenario: array('username', 'exist', 'on' => …
php validation yii model yii-validationIn a project I am working on I need to set a table prefix for the project which I can …
php yiiI have a list of elements that I am loading via ajax (using jQuery's .load()). Each of these elements has …
javascript jquery ajax colorbox yiiI'm trying to do a pagination on a CGridView using CArrayDataProvider (my $rawData is a custom array - not from …
php yii cgridview