I have an ezine with two different editions, a European and North American. I've decided to merge the two forms into one to simplify the sign-up procedure. However, I can't get the thing working
Here is the code for the two seperate forms. I've tried to merge them with a radio button like:
Code:
<input type=radio name="lists[15]" value="1LitNorthAmerica" CHECKED> North American Edition
<input type=radio name="lists[14]" value="1LitEurope">European Edition
but the values in [] are different for the countries, ***, etc. (For some reason the "[14]" and "[15]" stop the radio-button working - can't select between the two.)
Could anybody be so kind as to help me merge the two forms together?
Here's the code (I haven't listed all the world's countries in the drop-down box to save space):
Code:
European form:
<form action="http://130.94.172.64/maxemail/join.php">
Name: <input type="text" name="name" value="Your Name">
<br>
Email: <input type="text" name="email" value="you@mail.com">
<P>
***:<BR><input value="Male" name="exfields[10]" type=radio name=demo>Male
<BR><input value="Female" name="exfields[10]" type=radio name=demo>Female
<P>Country: <select name="exfields[11]"><option value="Select Country">Select Country
<option>Afghanistan<option >Albania<option >Algeria</select>
<font size=1 color=red> *required</font>
<P><input type=hidden name=list value="1LitEurope"><br> <input type="submit" name="submit" value="Join Now!"> </form>
--------------------------------
<BR><BR>
North American form:
<form action="http://130.94.172.64/maxemail/join.php">
Name: <input type="text" name="name" value=""> <br>
Email: <input type="text" name="email" value="">
<P>***:<BR>
<input value="Male" name="exfields[9]" type=radio name=demo>Male
<BR><input value="Female" name="exfields[9]" type=radio name=demo>Female<P>
Country: <select name="exfields[8]"><option value="Select Country">
Select Country</option>
<option >Afghanistan</option><option >Albania </option><option>Algeria </option>
</select>
<P><input type=hidden name=list value="1LitNorthAmerica"><br>
<input type="submit" name="submit" value="Join Now!"> </form>