"> see below
I have tried placing the aweber code into a smarty tag:
Code: Select all
echo
<center><form method="post" action="http://www.aweber.com/scripts/addlead.pl">
<input type="hidden" name="meta_web_form_id" value="xxxxxxxxxxx">
<input type="hidden" name="meta_split_id" value="">
<input type="hidden" name="unit" value="testpba">
<input type="hidden" name="redirect" value="http://www.aweber.com/form/thankyou_vo.html" id="redirect_xxxxxx">
<input type="hidden" name="meta_redirect_onlist" value="">
<input type="hidden" name="meta_adtracking" value="<?php echo $tid; ?>">
<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>Name:</td><td><input type="text" name="name" value="" size="20"></td></tr>
<tr><td>Email:</td><td><input type="text" name="from" value="" size="20"></td></tr>
<tr><td colspan=2><center></center></td></tr>
<tr><td align="center" colspan="2"><input type="submit" name="submit" value="Submit"></td></tr>
</table>
</form>
<img src="http://forms.aweber.com/form/displays.htm?id=jEzszKyMxxxx==" border="0" />
</center>
;
Code: Select all
<?php
$tid = $_REQUEST['tid'];
?>
www.mysite.com/resources/p-b-a/?tid=andy
and i have tried without the final forward slash
www.mysite.com/resources/p-b-a?tid=andy
But in both instances the tid "andy" is not getting passed into the bolded line above.
any suggestions on this issue?
I read up on the internet that it may be because I don't have a ".php" extension. Is this true?
thanks.