################# You can copy this code to test #################
if ($HTTP_GET_VARS)
echo "HTTP_GET_VARS=" . implode(" | ",$HTTP_GET_VARS) . "
";
if ($HTTP_POST_VARS) {
echo "HTTP_POST_VARS=" . implode(" | ",$HTTP_POST_VARS) . "
";
$array = $HTTP_POST_VARS;
echo $array[0];
}
?>
################# http://php4u.yes8.com #################