コード例 #1
0
ファイル: test.php プロジェクト: vipmorgana/PHP
<?php

/*
 */
require_once 'testController.class.php';
require_once 'testModel.class.php';
require_once 'testView.class.php';
$testContoller = new testController();
$testContoller->show();
コード例 #2
0
ファイル: test.php プロジェクト: Maysjtu/mvc
<?php

require_once "testController.class.php";
require_once "testModel.class.php";
require_once "testView.class.php";
$testController = new testController();
$testController->show();
コード例 #3
0
ファイル: index.php プロジェクト: jinyhu/myframework
<?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();