Re: [PHP] Is there a way to get multiple values for a singleinput in a form submission?

2006-03-23 Thread mslemko
Thanks Warren, This works! The side effect that is -somewhat- undesirable is that it becomes incompatible accessing the field with Javascript. Perhaps there is a way to get around that problem though. -Mark Warren Vail wrote: Set the name of your field in html to be; name="myselect[]" th

[PHP] Is there a way to get multiple values for a single input in a form submission?

2006-03-21 Thread mslemko
this is what I am trying to do: On a web form I might have a select input with multiple selections enabled, however I want to have access to the list within PHP after submission. 1 2 so when this is submitted, I can see in the $HTTP_RAW_POST_DATA that myselect is submitted twice... ...