Apr 7, 2001 #1 khurram IS-IT--Management Jan 10, 2001 95 CA I have the folling Drop-down box: <SELECT name="SelectPaymentOption"> <OPTION value=1>Visa</OPTION> </SELECT> I can set a variable with the word 'VISA' rather than than the value? Thanks.
I have the folling Drop-down box: <SELECT name="SelectPaymentOption"> <OPTION value=1>Visa</OPTION> </SELECT> I can set a variable with the word 'VISA' rather than than the value? Thanks.
Apr 7, 2001 #2 tlhawkins Programmer Dec 28, 2000 797 US Yeah khurram this will do it. <SELECT name="SelectPaymentOption"> <OPTION value="Visa">Visa</OPTION> </SELECT> SelectPaymentOption will equal "Visa" Upvote 0 Downvote
Yeah khurram this will do it. <SELECT name="SelectPaymentOption"> <OPTION value="Visa">Visa</OPTION> </SELECT> SelectPaymentOption will equal "Visa"