[PHP] multiple select problem

2003-02-16 Thread Thomas Moore
I had code working that was passing multiple select values to another screen from a form... In the URL on the next page I see a bunch of characters, so it doesn't work... %5C%22year_model_id%5B%5D%5C%22=60776 Anyone know what this is and how to fix it??? It was working fine for months and

[PHP] multiple select problem

2003-01-01 Thread Elaine Kwek
i am now facing a problem in multiple select. This is my example code in html. select name=destList MULTIPLE size=6 option value=4123/option option value=5234/option option value=6345/option /select i select all the value and pass to php...it should be a array. but when i display the

Re: [PHP] multiple select problem

2003-01-01 Thread Jason k Larson
What about if you use this instead: select name=destList[] MULTIPLE size=6 HTH, Jason k Larson Elaine Kwek wrote: i am now facing a problem in multiple select. This is my example code in html. select name=destList MULTIPLE size=6 option value=4123/option option value=5234/option

Re: [PHP] multiple select problem

2003-01-01 Thread Tom Rogers
Hi, Thursday, January 2, 2003, 12:39:46 PM, you wrote: EK i am now facing a problem in multiple select. EK This is my example code in html. EK select name=destList MULTIPLE size=6 EK option value=4123/option EK option value=5234/option EK option value=6345/option EK /select EK i