<SELECT multiple>

[email protected] ("Jerome") Thu, 19 Sep 2002 10:52:56 +0200
Newsgroups php.lang
Message-ID <[email protected]>
Hello,

My HTML contains <SELECT> tags which allow "multiple" selection.

When the form is submitted, each of the selected option is posted that way:

url?data=option1&data=option2....

So $_REQUEST['data'] is not an array but contains the "option2" value.

How can I get the list of all the "data" values (without parsing
$GLOBALS["HTTP_RAW_POST_DATA"]...) ?

Thanks,

Jerome