khkk24 / Yii2

Cours sur Yii2
0 stars 0 forks source link

Yii2 configuration #1

Open khkk24 opened 1 year ago

khkk24 commented 1 year ago

-Telecharger Yii sur sonsite officiel.

khkk24 commented 1 year ago

Executer dans le terminal avec : php -S localhost:8888

khkk24 commented 1 year ago

HelloController.php <?php

namespace app\controllers;

use yii\web\Controller; ======>>>>>> class HelloController extends Controller { public function actionSaySomething($message='hello') { return $this->render('say-something', [ 'message' => $message ]); } }<<<<<<<<====

VIEWS hello/say-something

''

O Valor da variavel $message é: <?=\yii\helpers\Html::encode($message) ?>

''