Skip to content

Request Method

JulianFun123 edited this page Mar 19, 2019 · 2 revisions

Min. Deverm-Router-1.2

/!\ THIS DOES ONLY WORKS WITHOUT ROUTEVARS ( [routevar] )

$route = [
  "/requestMethodExample" =>  "RMExampleGet.php"
];


$requestMethod = [   
  "/requestMethodExample"=>[
    "post"=>"RMExample.php"
  ]
];

$router->set($route);

$router->setRequestMethods($requestMethod);

If you make a request with POST, the user will see RMExample.php.

Clone this wiki locally