If you are not receiving any demographic information from your SendReach autoresponder, please consider the following...
It may appear to be correct but you need to take a look to make sure your quotations are correct. The difference is between “location" value=“” where you have slanted quotation marks and in HTML, this is different. See difference: "" vs “ ”.
This is the correct format...
<form method="post" action="https://register.sendreach.com/forms/?listid=17953" name="optin" id="optin" onsubmit="return required();"> <table> <tr><td colspan=2><center></center></td></tr> <tr><td>Name:</td><td><input type="text" name="name" value="" size="20"></td></tr> <tr><td>Email:</td><td><input type="text" name="email" value="" size="20"></td></tr> <tr><td>Cell:</td><td><input type="text" name="cell" value="" size="20"></td></tr> <tr><td colspan=2><center></center></td></tr> <tr><td align="center" colspan="2"><input type="submit" value="Subscribe"><input type="hidden" name="lid" value="17953"></td></tr> </table> <input type="hidden" name="location" value="" > <input type="hidden" name="gender" value="" > <input type="hidden" name="age" value="" > <input type="hidden" name="likes" value="" > </form>
|