index.php 185 B

12345678910
  1. <?php
  2. include_once('../autoloader.php');
  3. use App\Controller;
  4. $action = isset($_GET['action']) ? $_GET['action'] : '';
  5. $controller = new Controller($action);
  6. $controller->execute();