summaryrefslogtreecommitdiff
path: root/public/vars.php
blob: a34dcd0229b7255867b0e19823f7631000e6ecb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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>