Exemple #1
0
<?php

/*
 */
require_once 'testController.class.php';
require_once 'testModel.class.php';
require_once 'testView.class.php';
$testContoller = new testController();
$testContoller->show();
Exemple #2
0
<?php

require_once "testController.class.php";
require_once "testModel.class.php";
require_once "testView.class.php";
$testController = new testController();
$testController->show();
Exemple #3
0
<?php

header("Content-type:text/html;charset=utf-8");
require_once 'testController.class.php';
require_once 'testModel.class.php';
require_once 'testView.class.php';
$controller = new testController();
$controller->display();