i have a standard form that has a question at the end asking the user if they are interested in receiving a free promo item. the code looks like this:
are you interested in promo item X?
<input type=RADIO name="promohat" value="1">
yes
<input type=RADIO name="promohat" value="2">
no
I am trying to write a simple function that checks the value here and if the value is 1 for yes to send the user to a personal information form else process the form as it normally would. Do any of you gurus know how this could be accomplished?