ID: 39255
Comment by: phpbugs at thequod dot de
Reported By: PK at KoffieHosting dot com
Status: Open
Bug Type: Unknown/Other Function
Operating System: ISS 6.0
PHP Version: 5.1.6
New Comment:
Remove the ";" at the end of the foreach() line.
You have a foreach loop that does nothing and then the
echo uses the last elements.
This should work:
foreach ($_POST['Boxes'] as $Key => $Value)
{
echo '['.$Key.'] => '.$Value;
}
Previous Comments:
------------------------------------------------------------------------
[2006-10-25 15:04:25] PK at KoffieHosting dot com
I don't have enough rights on that machine (as it is not hosted with
us) to try that.
------------------------------------------------------------------------
[2006-10-25 15:02:00] [EMAIL PROTECTED]
No need to upgrade the server, just put it in some other directory and
try it.
------------------------------------------------------------------------
[2006-10-25 14:53:06] PK at KoffieHosting dot com
Unfortunately I can not upgrade that server.
------------------------------------------------------------------------
[2006-10-25 14:49:49] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5.2-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php5.2-win32-latest.zip
------------------------------------------------------------------------
[2006-10-25 14:47:59] PK at KoffieHosting dot com
Description:
------------
FastCGI (PHP5) on ISS 6.0: the foreach only shows the last item.
Reproduce code:
---------------
foreach ($_POST['Boxes'] as $Key => $Value);
{
echo '['.$Key.'] => '.$Value;
}
Note that this does work 100%:
while (list($What, $Amount) = each($_POST['Boxes']))
{
echo '['.$Key.'] => '.$Value;
}
Expected result:
----------------
[4] => 0
[2] => 0
[3] => 1
[6] => 0
[1] => 0
[5] => 0
Actual result:
--------------
[5] => 0
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=39255&edit=1