Need Help Getting Optin Form to Work with GetResponse
I have some flash optin templates that come with a basic aweber example. The product works with all autoresponders, but I can't figure out a way to get it to work with GetResponse.
Any help would be appreciated. I've posted the Aweber setup and then my GetResponse attempt below.
Thanks much!
Ron
aweber setup:
<?php
$redirectlink = $_POST['redirection-link'];
$opt_name = $_POST['firstname'];
$opt_mail = $_POST['email'];
?>
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl" id="aweber">
<input type="hidden" name="meta_web_form_id" value="1335672829">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="sce_free_chapte">
<input type="hidden" name="redirect" value="<? echo $redirectlink; ?>" id="redirect_1f95dfb307fe607d44eed5d2021b45cb">
<input type="hidden" name="meta_redirect_onlist" value="<? echo $redirectlink; ?>">
<input type="hidden" name="meta_adtracking" value="">
<input type="hidden" name="meta_message" value="1">
<input type="hidden" name="meta_required" value="from">
<input type="hidden" name="meta_forward_vars" value="0">
<table>
<tr><td colspan=2><center></center></td></tr>
<tr><td></td><td><input type="hidden" name="name" value="<? echo $opt_name; ?>" size="20"></td></tr>
<tr><td></td><td><input type="hidden" name="from" value="<? echo $opt_mail; ?>" size="20"></td></tr>
<tr><td colspan=2><center></center></td></tr>
</table>
</form>
<script language=javascript>
document.getElementById('aweber').submit();
</script>
</center> My GetResponse setup attempt:
<?php
$redirectlink = $_POST['redirection-link'];
$opt_name = $_POST['firstname'];
$opt_mail = $_POST['email'];
?>
<form action="http://www.getresponse.com/cgi-bin/add.cgi" method="post" id="GRSubscribeForm" accept-charset="UTF-8">
<input type="hidden" name="getpostdata" value="get" />
<input type="hidden" name="ref" value="955" />
<input type="hidden" name="confirmation" value="<? echo $redirectlink; ?>"/>
<input type="hidden" name="category1" value="affiliatelessons" />
<input type="hidden" name="name" value="<? echo $opt_name; ?>" id="GRCategory2" />
<input type="hidden" name="from" value="<? echo $opt_mail; ?>" id="GRCategory3" />
<input type="submit" value="" />
</form>
<script language=javascript>
document.getElementById('GRSubscribeForm').submit();
</script>
Octarendra.com