PerlTrumpsPhp
Programmer
Just a quick question. I'm a Perl user, not so much JavaScript so bare with me.
I have a pulldown menu with X number of options. The value of the options are NOT urls but references that my script can decode. My question is this..
Say the form name is "templates" and the pulldown is named "choice". How do I make it redirect to my script, say " followed by the value of the "choice" menu?
Ie:
When the user selects FROGS, I need them to go to
I know it's probably easier having a GO button, so I'll take that if someone can help.
I have a pulldown menu with X number of options. The value of the options are NOT urls but references that my script can decode. My question is this..
Say the form name is "templates" and the pulldown is named "choice". How do I make it redirect to my script, say " followed by the value of the "choice" menu?
Ie:
Code:
<form action="" method="get" name="templates">
<select name="choice">
<option value"frog">Cool Frogs</option>
<option value"turtles">Not tortouses</option>
</select></form>
When the user selects FROGS, I need them to go to
I know it's probably easier having a GO button, so I'll take that if someone can help.