Re: [PHP] retrieving multi-select form values

2003-07-31 Thread Mark
Not sure if you got a reply to this, but you need to make list an array. Use list[] in your form as the variable name, and then $_GET["list"] will be an array of your values. --- Hank TT <[EMAIL PROTECTED]> wrote: > Given the following querystring generated by, for example, a > multi-select > for

[PHP] retrieving multi-select form values

2003-07-30 Thread Hank TT
Given the following querystring generated by, for example, a multi-select form list (menu), the contents of $_GET['list'] is expected to be an array holding 3 elements: http://awebsite.net/formlist.php?list=2&list=3&list=99 Yet I only see the last value returned as a lone string. Is this expecte