9 lines
284 B
PHP
Executable file
9 lines
284 B
PHP
Executable file
<?php
|
|
|
|
define("APPLICATION_PATH", dirname(dirname(__FILE__)).DIRECTORY_SEPARATOR."application");
|
|
define("CLASSES_PATH", APPLICATION_PATH.DIRECTORY_SEPARATOR."class");
|
|
|
|
require CLASSES_PATH.DIRECTORY_SEPARATOR."application.class.php";
|
|
|
|
$poo_v1 = new Application();
|
|
$poo_v1->launch();
|