If your form is:

<SELECT name=a>
        <OPTION value=1>1</OPTION>
        <OPTION value=2>2</OPTION>
</SELECT>

<SELECT name=b>
        <OPTION value=1>1</OPTION>
        <OPTION value=2>2</OPTION>
</SELECT>

Then you'd have two php post variables available, a and b, each
would have a value of 1 or 2, which you could get from HTTP_POST_VARS
or, with later php versions, $_POST["a"] and $_POST["b"].

Joshua E Minnie wrote:

> I have a form with a menu which I need multiple select on.  How does PHP
> handle this?  I have to use $HTTP_POST_VARS["somevariable"] to access
> somevariable from the form.
> 
> --
> Joshua E Minnie
> CIO
> [EMAIL PROTECTED]
> 
> "Don't work for recognition, but always do work worthy of recognition."
> 
> 
> 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to