Listing 1.5. | |
| ROZDZIAŁ: | 1. Hello Word - pierwsza aplikacja korzystająca z MVC |
| TXT: | listing-01-05.txt |
error_reporting(E_ALL);
ini_set('display_errors', 1);
set_include_path(
'../scripts' . PATH_SEPARATOR .
'../scripts/include' . PATH_SEPARATOR .
get_include_path()
);
require_once 'controller.class.php';
$controller = new Controller();
$controller->dispatch();