Hi,
A beginners question...hope someone can help
I have a dropdown menu passing information to a form.
(Actually it is passing Price data to a simple shopping cart)
<select name="Resumes">
<option value="$100.00">30 Day Resume Search</option>
<option value="$150.00">60 Day Resume Search</option
<option value="$200.00">90 Day Resume Search</option
</select
Using the drop down, I would also like to pass another variable i.e. 30,60,90 respectively (for days a user is allowed to search in the above example), ideally as a hidden field to the form as well.
Is it possible to do something like:
<select name="Resumes">
<option value="30,$100.00">30 Day Resume Search</option>
<option value="60,$150.00">60 Day Resume Search</option
<option value="90,$200.00">90 Day Resume Search</option
</select
Am I in the ballpark? If so, how would I get the 30, 60, 90 into a hidden field on the next page.
If I am not close, any ideas on how to do this?
Thanks Very Much in Advance
Joe
A beginners question...hope someone can help
I have a dropdown menu passing information to a form.
(Actually it is passing Price data to a simple shopping cart)
<select name="Resumes">
<option value="$100.00">30 Day Resume Search</option>
<option value="$150.00">60 Day Resume Search</option
<option value="$200.00">90 Day Resume Search</option
</select
Using the drop down, I would also like to pass another variable i.e. 30,60,90 respectively (for days a user is allowed to search in the above example), ideally as a hidden field to the form as well.
Is it possible to do something like:
<select name="Resumes">
<option value="30,$100.00">30 Day Resume Search</option>
<option value="60,$150.00">60 Day Resume Search</option
<option value="90,$200.00">90 Day Resume Search</option
</select
Am I in the ballpark? If so, how would I get the 30, 60, 90 into a hidden field on the next page.
If I am not close, any ideas on how to do this?
Thanks Very Much in Advance
Joe