index.php configuration.

This commit is contained in:
lukibeg 2025-10-16 00:18:37 -03:00
parent 7b65ec45c6
commit 497b480c2f
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
require_once '../vendor/autoload.php';
require_once '../routes/Router.php';
use Routes\Router;
$router = new Router();
$uri = $_SERVER['REQUEST_URI'];
print_r($uri);

View File

@ -1,5 +1,6 @@
<?php
namespace Routes;
class Router
{