
Code: Alles auswählen
<html><head><body><pre><?php
print "HTTP_GET_VARS\n";
print "-------------\n";
reset ($HTTP_GET_VARS);
while (list($key, $value) = each ($HTTP_GET_VARS)) print "$key : $value\n";
print "\n";
print "HTTP_POST_VARS\n";
print "--------------\n";
reset ($HTTP_POST_VARS);
while (list($key, $value) = each ($HTTP_POST_VARS)) print "$key : $value\n";
?></pre></body></html>