Top "Yii" questions

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

Yii2 how does search() in SearchModel work?

Please can someone explain how the search method in a Yii2 SearchModel works? I generated it using Gii. Here it …

php yii yii2
CDbConnection failed to open the DB connection: could not find driver in Yii

while trying to connect with mysql in yii framework it shows "CDbConnection failed to open the DB connection: could not …

php mysql yii zend-studio yii-cactiverecord
Saving a checkbox value in Yii

I can't figure out how to properly save checkbox values in Yii. I have a MySQL column, active, defined as …

yii
Yii2: How to use orWhere in andWhere

I want create this query with yii2 search model select * from t1 where (title = 'keyword' or content = 'keyword') AND (category_…

yii yii2
Yii Framework 2.0 Login With User Database

I have been trying to search on the Internet how to write the code in Yii framework 2.0 so that user …

php database yii login yii2
How to do IS NULL and IS NOT NULL with Yii 2 ActiveRecord?

I have a table which has a field `activated_at` timestamp NULL DEFAULT NULL, which means that it can contain …

php activerecord yii yii2
Implementing an RESTful API Authentication using tokens (Yii/Yii2)

I am building an API in Yii 1.x which will be used with a mobile application. Part of the process …

php rest yii access-token restful-authentication
Yii Framework 2.0 Rules Date Validator

I am using Yii Framework 2.0. I have a form with a text input field which is meant for a date. …

php date yii validation yii2
Sessions in Yii

Here I go what am doing is I am using Yii::app()->SESSION['userid'] with no Yii::app()…

php session yii
how to yii getPost for array _POST vars?

Assuming i have $_POST["x"]["y"] = 5; how can i Yii::app()->request->getPost('x[y]'); how …

php yii http-post