diff --git a/index.php b/index.php index 83f8a79..0e954f2 100644 --- a/index.php +++ b/index.php @@ -1,4 +1,5 @@ contact form
  • get+post example
  • test.html
  • +
  • PHP Info
  • aTrailingSlashDoesNotMatter
  • aTrailingSlashDoesNotMatter/
  • theCaseDoesNotMatter
  • @@ -43,6 +45,14 @@ Route::add('/test.html', function() { echo 'Hello from test.html'; }); +// This route is for debugging only +// It simply prints out some php infos +// Do not use this route on production systems! +Route::add('/phpinfo', function() { + navi(); + phpinfo(); +}); + // Post route example Route::add('/contact-form', function() { navi();