<?php

if (empty($_POST))
	die("No POST, radio!");


echo "<html><head><title>POST viewer</title></head><body>";

echo "This is what the server sees that you sent it...";

echo "<pre>";

foreach ($_POST as $key => $value)
{
	echo "\"" . htmlspecialchars($key) . "\" => \"" . htmlspecialchars($value) . "\"<br/>";
}

echo "</pre>";

echo "</body></html>";

?>
