Top "Yii" questions

Use for questions about any version of Yii, an open-source MVC framework for writing web 2.0 applications in PHP5+

Yii : how to count records in a model?

I have following code to fetch data from a model. $notifyModel = Notification::model()->findByAttributes(array( 'user_id'=> …

php yii
How to get response as json format(application/json) in yii?

How to get response as json format(application/json) in yii?

php yii
yii2: make checkbox to be checked

I am using Yii2 framework and I'd like to generate an html code like this <input type="checkbox" id="…

php html yii active-form
URL in Yii2 GridView

I have this code: <?php echo GridView::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\…

php gridview yii yii2
How to set the default controller in yii2

I have UserControler and I run it in virtual server http://basic.com/index.php?r=user/index. How can …

php yii yii2 config default
Yii2 request parameter from url

In YII I could request a parameter from url and populate a form field called companyAdd_id with the following …

yii yii2
Hide label for input field

I am trying to hide the label for a specific field in _form.php without success. I have tried couple …

forms yii yii2 yii-widgets
Basic Hidden field in yii

I'm trying to place data in hidden text in yii, but I don't know how. I need a similar code …

php yii field hidden yii1.x
Yii selecting only specified attributes in array

I often face this problem.. Lets say ..In blog application, I need to email all the active users.. What I …

php activerecord yii
how do I delete rows in Yii?

Using Yii, I want to delete all the rows that are not from today. Is my solution ok ? $query = "delete …

yii delete-row