예제 #1
0
파일: counter.php 프로젝트: AragCF/alchemy
<?
 error_reporting(E_ALL ^ E_NOTICE);
 ini_set('memory_limit', '700M');
 
 include_once("controller/Controller.php");      // this is the initializer (if I could say so) for the controller part of our MVC pattern
 
 $controller = new Controller();   // instantiate a class
 $controller->counter();               // start it. nice, isn't it?
 
?>