Posted by Jψrn Dahl-Stamnes on 11/10/05 13:10
I got the following code:
reset ($_POST);
while (list($key,$val) = each($_POST))
{
echo "$key => $val\n";
}
But this prints out nothing. If I replace the code above with:
print_r ($_POST);
I can see the content of the $_POST array. Why?
--
JΓΈrn Dahl-Stamnes
http://www.dahl-stamnes.net/dahls/
Navigation:
[Reply to this message]
|