Skip to content

Instantly share code, notes, and snippets.

@zoghal
Last active August 29, 2015 14:19
Show Gist options
  • Save zoghal/86ab33bab7ab07350504 to your computer and use it in GitHub Desktop.
Save zoghal/86ab33bab7ab07350504 to your computer and use it in GitHub Desktop.
WelcomesController.php
<!-- location: src/Template/Welcomes/index.ctp -->
<h1> <?= $msg ?> </h1>
<?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