On 10/18/06, Robert Hicks <[EMAIL PROTECTED]> wrote:
I have this as an option field:

<option value="5">Business Objects Support</option>

Is the "value" what gets passed back? In this case "5"?


The associated *name* and *value* are passed on to the Perl script if
you are pointing your form to a Perl script. For example, you have a
drop down list of 10 options like your above example, and the name of
the NAME of the form was BUSINESS TYPE then your Perl script would
read the form data as such:

$FORM{BUSINESS TYPE} = 5;

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to