You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
header('Content-type: text/plain;charset=utf-8');
|
|
echo "-- SERVER --";
|
|
print_r($_SERVER);
|
|
echo "\n\n-- REQUEST --";
|
|
print_r($_REQUEST);
|
|
echo "\n\n-- POST --";
|
|
print_r($_POST);
|
|
echo "\n\n-- GET --";
|
|
print_r($_GET);
|