A huge SQL query that creates a table with all 50 states and how to implement it into a signup form...
or...
A drop down list with all 50 states I can just copy and paste and edit? Id prefer this one.
Thanks!
Moderator: General Moderators
Code: Select all
<FORM METHOD="e;POST"e; ACTION="e;nextpage.cfm"e;>
<SELECT SIZE="e;1"e; NAME="e;Fruits"e;>
<OPTION>Select an item</OPTION>
<OPTION VALUE="e;"e;>USA</OPTION>
<OPTION VALUE="e;"e;>Iowa</OPTION>
<OPTION VALUE="e;"e;>Texas</OPTION>
</SELECT>
<INPUT TYPE="e;submit"e; VALUE="e;Submit Fruit"e;>
</FORM>Code: Select all
<FORM
ACTION="e;../cgi-bin/redirect.pl"e;
METHOD=POST onSubmit="e;return dropdown(this.gourl)"e;>
<SELECT NAME="e;gourl"e;>
<OPTION VALUE="e;"e;>Choose a Destination...
<OPTION VALUE="e;USA"e; >USA
<OPTION VALUE="e;IOWA"e; >IOWA
<OPTION VALUE="e;TEXAS"e; >TEXAS
</SELECT>
<INPUT TYPE=SUBMIT VALUE="e;Go"e;>
</FORM>