Jump to content

GioBulia

Members
  • Posts

    8
  • Joined

  • Last visited

About GioBulia

  • Birthday 10/24/1991

Profile Information

  • Location
    Georgia, Tbilisi

GioBulia's Achievements

Newbie

Newbie (1/7)

6

Reputation

  1. Hello, I want to write own MVC, I need some tutorials can anyone recommend me any tutorials website for learn OOP and MVC in this moment I have made this: bootstap.php class Bootstrap {function __construct() { if(isset($_GET['mod'])) { $mod = $_GET['mod']; } if(ctype_alnum(@$_GET['mod'])) { $mod = explode('/',$mod); } if(file_exists('system/modules/' . $mod[0] . '.php')) { require_once 'system/modules/' . $mod[0] . ".php"; } else { require_once 'system/modules/pagenotfound.php'; }}} Thank you
×
×
  • Create New...