Calling URI * */ public function __construct($url){ $this->pagename = $url['page']; } /* CALL * */ public function load(){ if( file_exists(__PUBLIC__."/page/".$this->pagename.".php") ) include __PUBLIC__."/page/".$this->pagename.".php"; else echo "page not found"; } /* POST-CALL * */ public function __destruct(){ } }