ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: james2 on October 17, 2004, 05:14:00 am

Title: country dropdown box determines which list to join
Post by: james2 on October 17, 2004, 05:14:00 am
Is it possible to have a dropdown box custom field (eg: list of countries) that would add a subsrciber to a certain list depending on which selection they made ?

I have three lists:
Full List
North American List
Australian List

For Example : When a Canadain joins i would like them to be added to the Full list and the North American list.

how can we do this ??
Title: country dropdown box determines which list to join
Post by: DW on October 19, 2004, 08:35:30 am
This is possible with a SELECT field in your signup form that sets the list variable.
Code: [Select]
<form method=post action=http://yoursite.com/mail/signup.php>
Email: <input type=text name=email><br>
Country: <select name=list><option value=1>International<option value=2>North America<option value=3>Australia</select><br>
<input type=submit value=Subscribe!>
</form>