Controller, nazwa pliku controller.php
<?php class user_Controller extends Controller { public function __construct() { parent::__construct(); } public function index() { $view = new View('show'); $view-> title = "This is a trial"; $view-> heading = "Header"; $view-> content = "Content"; $view->render(TRUE); } } ?>
View, nazwa pliku show.php
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us"> <head> </head> <body> <ul> </ul> </body> </html>