DownloadPHP MVC 4 Dummies
A Simple PHP MVC Framewok
make Hello World
edit /routes.php
Router::get("/","HomeController","index");
in /controllers make HomeController.php
class HomeController extends BaseController
{
public function index(){
$this->templateEngine->assign('greeting','hello world');
$this->templateEngine->display('home.tpl');
}
}
in /views/templates make home.tpl
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>hello world</title>
</head>
<body>
<h1>{$greeting}</h1>
</body>
</html>
|