Date: 11/22/00
- Next message: Hartmut Holzgraefe: "[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard credits_ext.h"
- Previous message: root <email protected>: "[PHP-DEV] CVS Account Request"
- Next in thread: Jon Tai: "Fw: [PHP-DEV] PHP 4.0 Bug #7934: HTTP_POST_VARS unable to handle same key multiple times"
- Maybe reply: Jon Tai: "Fw: [PHP-DEV] PHP 4.0 Bug #7934: HTTP_POST_VARS unable to handle same key multiple times"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: bzeeb+php <email protected>
Operating system: FreeBSD
PHP version: 4.0.3
PHP Bug Type: Variables related
Bug description: HTTP_POST_VARS unable to handle same key multiple times
Using p.ex. function from FAQ 7.1 to read HTTP_POST_VARS one
is unable to handle/see all key-value-pairs when key is the same for
multiple values. I did not find any way to see all pairs (well one might define an array as name but that is not what CGI standard expects I think).
p.ex. having something like this in a HTML form:
<input type=checkbox name="FORM_key" value="2">
<input type=checkbox name="FORM_key" value="8">
<input type=checkbox name="FORM_key" value="19">
would only result in:
FORM_key -> 19
sizeof($HTTP_POST_VRS) = 1
instead of
FORM_key -> 2
FORM_key -> 8
FORM_key -> 19
where sizeof would return 3.
This is most likely caused by using some kind of associative array instead
of using indexes. I did not manage to solve this by using other array f()s.
I do not have time to look at the source code - sorry.
A simple dirty quick hack perl-script shows you that one does get all the
three values:
--- snipp ---
#!/usr/bin/perl
printf("Content-Type: text/html\n\n");
if ($ENV{'CONTENT_LENGTH'} > 0) {
read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
<email protected> = split(/&/, $buffer);
printf("\nPOST-Buffer (raw):<br>\n");
printf("%s\n", $buffer);
printf("\nPOST-Buffer (split up):<br>\n");
foreach $pair ( <email protected>) {
printf("%s<br>\n", $pair);
}
} else {
printf("NO HTTP_POST_VARs -> nothing to do here<br>\n");
}
# End;
--- snipp ---
-- Edit Bug report at: http://bugs.php.net/?id=7934&edit=1-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Hartmut Holzgraefe: "[PHP-DEV] Re: [PHP-CVS] cvs: php4 /ext/standard credits_ext.h"
- Previous message: root <email protected>: "[PHP-DEV] CVS Account Request"
- Next in thread: Jon Tai: "Fw: [PHP-DEV] PHP 4.0 Bug #7934: HTTP_POST_VARS unable to handle same key multiple times"
- Maybe reply: Jon Tai: "Fw: [PHP-DEV] PHP 4.0 Bug #7934: HTTP_POST_VARS unable to handle same key multiple times"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

