commit 00faed6eeaf408df84860c71d2450988e1d2787a
parent 9f2a2116c322ae004eb5bbe3a6d337227c9e3d87
Author: Friedel Schon <[email protected]>
Date: Tue, 18 Apr 2023 17:30:31 +0200
routing
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/index.php b/index.php
@@ -17,10 +17,10 @@ $router->addRoute(['GET', 'POST'], '/add_customer', 'views/add_customer.php');
$router->addRoute(['GET', 'POST'], '/add_user', 'views/add_user.php');
//alter_contract
-$router->addRoute(['GET', 'POST'], '/alter_contract ', 'views/alter_contract .php');
+$router->addRoute(['GET', 'POST'], '/alter_contract', 'views/alter_contract.php');
//alter_customer
-$router->addRoute(['GET', 'POST'], '/alter_customer ', 'views/alter_customer .php');
+$router->addRoute(['GET', 'POST'], '/alter_customer', 'views/alter_customer.php');
//alter_user
$router->addRoute(['GET', 'POST'], '/alter_user', 'views/alter_user.php');
diff --git a/utils/router.php b/utils/router.php
@@ -50,6 +50,9 @@ class Router
{
$this->path = $_SERVER["REQUEST_URI"];
+ $query = parse_url($this->path, PHP_URL_QUERY);
+ parse_str($query, $_GET);
+
if (strpos($this->path, '?'))
$this->path = explode('?', $this->path)[0];