Hellihello Sven,
Du läßt dir $_REQUEST ausgeben. Warum nicht mal $_POST, $_GET und $_COOKIES einzeln?
Cool! Die Cookies sinds. Aber warum? Ich setzte doch keinen. Der Quelltext ist (mittlerweile etwas erweitert) exakt:
<pre>
<?php
echo "post:
";
var_dump($_POST);
echo "get:
";
var_dump($_GET);
echo "cookies:
";
var_dump($_COOKIE);
?>
</pre>
<h2>Form mit Post</h2>
<form action="" method="post">
<input type="checkbox" name="my_checkbox">
<input type="radio" name="my_radio" value="one">
<input type="radio" name="my_radio" value="two">
<input type="text" name="my_text">
<input type="submit">
</form>
<h2>Form mit Get</h2>
<form action="" method="get">
<input type="checkbox" name="my_checkbox">
<input type="radio" name="my_radio" value="one">
<input type="radio" name="my_radio" value="two">
<input type="text" name="my_text">
<input type="submit">
</form>
bringt: zB:
post:
array(0) {
}
get:
array(2) {
["my_radio"]=>
string(3) "one"
["my_text"]=>
string(0) ""
}
cookies:
array(3) {
["my_checkbox~p"]=>
string(2) "on"
["my_radio~p"]=>
string(3) "one"
["my_text~p"]=>
string(82) "|asdfasdfads|asdfasdfasd|dfghdfghdfghd|sfgsdfgsdfgsdfg|asdfasdfasdfadsf|sdfgsdfgsf"
}
Dank und Gruß,