if (isset($_POST['form']['Amount']))
{
$business = This email address is being protected from spambots. You need JavaScript enabled to view it.';
$item_name = 'Recurring Payment from '.$_POST['form']['FullName'];
$amount = $_POST['form']['Amount'];
header('Location: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick-subscriptions&business='.$business.'&item_name=Recurring%20Payment&a3='.$amount.'&p3=1&t3=M¤cy_code=USD');
exit();
}
In the header () line above, make note of the "p3" and "t3" settings in the URL:
p3=periods (e.g. 1)
t3=time (e.g. month)