Php – Why is my router causing not to read the css?
I created a router from scratch. It's a simple router : class Router { private static array $routes; public static function register($route = '/', $filename=''){ self::$routes[$route] = $filename; } public static function run(string $URI){ $route = explode('?', $URI)[0]; $play =…