diff options
Diffstat (limited to 'public/vars.php')
| -rw-r--r-- | public/vars.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/vars.php b/public/vars.php new file mode 100644 index 0000000..a34dcd0 --- /dev/null +++ b/public/vars.php @@ -0,0 +1,19 @@ +<?php +include("config/parametres.php"); +include("includes/sessions.php"); +?><html> +<head> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <title>Variables</title> + <style> + pre { font: 13px 'Ubuntu Mono', Consolas, Monaco, fixed; } + </style> +<bidy> + <pre> +<?php +echo "server:\n"; print_r($_SERVER); +echo "\n\nsession:\n"; print_r($_SESSION); +?> +</pre> +</body> +</html> |
