@@ -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();