aboutsummaryrefslogtreecommitdiff
path: root/index.php
blob: 2d55787b94ff2970afc1c484b8b4a3126e5a41c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/*require_once(dirname(__FILE__) . "/ratatoeskr/main.php");
ratatoeskr();*/

header("Content-type: text/plain");
print "\$_POST:\n";
print_r($_POST);
print "\n\n\$_GET:\n";
print_r($_GET);
print "\n\n\$_REQUEST:\n";
print_r($_REQUEST);
print "\n\n\$_SERVER:\n";
print_r($_SERVER);
?>