Use for questions about any version of Yii, an open-source MVC framework for writing web 2.0 applications in PHP5+
<?php $form = ActiveForm::begin(['id' => 'contact-form']); ?> <?= $form->field($model, 'email', [ 'inputOptions' => [ 'placeholder' => 'Ihre …
php yii yii2In my sitecontroller I write like this 'access' => [ 'class' => AccessControl::className(), 'rules' => [ [ 'actions' => ['login', 'error'], 'allow' =&…
php yii yii2What is the difference between homeUrl and baseUrl in Yii framework?
php yiihow can i count data that will retrieved by $dataProvider ? i've tried to use this code, $dataProvider = new CActiveDataProvider('Model'); $…
yiiI find Yii great framework, and the example website created with yiic shell is a good point to start... however …
php internationalization yiiIs there a way to ensure all values in an IN clause are matched? Example: I can use IN as: …
mysql sql yiiI want to get the current controller name that handles the current action. but the in my case I will …
php templates yii yii-componentsI want to learn Yii2 membership and use Yii to store and retrieve roles using a database. I have read …
php yii yii2 yii-extensions rbacI want to display CGridView component with all records as a link to its related Update page. I want the …
gridview yii yii-components