Last active
August 29, 2015 14:19
-
-
Save zoghal/86ab33bab7ab07350504 to your computer and use it in GitHub Desktop.
WelcomesController.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- location: src/Template/Welcomes/index.ctp --> | |
<h1> <?= $msg ?> </h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Controller; | |
use App\Controller\AppController; | |
class WelcomesController extends AppController{ | |
public function index( ){ | |
$this->set('msg', 'Hello'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment