1.Apache start
2.index.ctp
<!DOCTYPE html>
<head>
<title><?=$title ?></title>
<style>
h1 {font-size:24pt;
margin: 0px 0px 10px 0px; padding:0px 20px;color:white;
background: linear-gradient(to right ,#aaa, #fff);}
p{font-size:14pt; color:#666;}
</style>
</head>
<body>
<header class="row">
<h1><?=$title ?></h1>
</header>
<div class="row">
<p><?=$message ?></p>
</div>
</body>
</html>
3.HelloController.php
<?php
namespace App\Controller;
use App\Controller\AppController;
class HelloController extends AppController{
public function index(){
$this->viewBuilder()->autoLayout(false);
$this->set('title','Hello');
$this->set('message','This is message!');
}
}
?>
4.
http://localhost/mycakeapp/hello