ok... im an official idiot... i tried to check for post by using get vars... duh...
this here works perfectly fine for both (at least with PHP 4.1+):
foreach ($_POST as $key => $value) {
print $key . " => " . $value . "<BR>";
}
foreach ($_GET as $key => $value) {
print $key . " => " . $value . "<BR>";
}