<?php

require_once "controller/masterController.php";
$masterController = new masterController();
$masterController->startMyApplication();
//startar hela min applikation!
Beispiel #2
0
<?php

require_once 'controller/masterController.php';
error_reporting(E_ALL);
ini_set('display_errors', 'On');
$mc = new masterController();
$mc->launchApplication();