Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Well, right on the matches:
/* index.php */
$controllerClass = ucfirst($_GET['controller']);
$method = $_GET['method'];
require_once("controllers/$controllerClass.php");
$controller = new $controllerClass();
$controller->$method();
A simple php router https://github.com/nikic/FastRoute
And here is a very simple one, from one file https://github.com/dannyvankooten/AltoRouter
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question