Top "Yii2" questions

Yii 2 is the latest version of the Yii framework - a high-performance, component-based PHP framework

How to make a drop down list in yii2?

How to make a dropdown in yii2 using an activeform and a model? Since all the methods has changed in …

php drop-down-menu yii2
How to get root directory in yii2

yii2 Question My yii2 install in d:\wamp\www\yii2store I want to get above path to save images …

php frameworks yii2
yii2 redirect in controller action does not work?

I am posting a form to /user/save in order to save user data. The problem occurs when i try …

redirect yii2
Yii2 data provider default sorting

In Yii 1.1 this code works for default sorting: $dataProvider = new CActiveDataProvider('article',array( 'sort'=>array( 'defaultOrder'=>'id DESC', ), )); …

php yii yii2 gridview-sorting
yii2 hidden input value

In Yii2 I'm trying to construct hidden input echo $form->field($model, 'hidden1')->hiddenInput()->…

yii2 hidden-field
Yii2 How to perform where AND or OR condition grouping?

I am new to Yii-2 framework. How can i achieve following query in Yii-2 framework using activeQuery and models. SELECT * …

php mysql activerecord yii yii2
Getting base URL in Yii 2

I am trying to get the base URL for the project in Yii 2 but it doesn't seem to work. According …

php yii yii2
Enable clean URL in Yii2

How can I enable clean urls in Yii2. I want to remove index.php and '?' from url parameters. …

yii2 clean-urls yii-url-manager
How to upload a file to directory in yii2?

i have an ActiveForm, and i want to add a field where the user can upload their photos. the problem …

php yii2
How to count and group by in yii2

I would like to generate following query using yii2: SELECT COUNT(*) AS cnt FROM lead WHERE approved = 1 GROUP BY promoter_…

php mysql yii2