id; } $order_time = time(); // Write user id to paypal table, so the return script knows it's expecting this payment mysql_query("INSERT INTO donation_paypal SET order_time = '".$order_time."', userid = '$userid', item_number=".$item_id.", order_amount = '".mysql_real_escape_string($amount)."'"); $payment_id = mysql_insert_id(); $URL = "www.paypal.com/cgi-bin/webscr"; $fields = ("cmd=_xclick&lc=US&business=".PAYPAL_ADDRESS."&quantity=1&item_name=Donation&item_number=".$payment_id."_".$order_time."&amount=".$amount."&no_shipping=1&return=".URL_BASE."/donated.php?st=Completed&rm=2&cancel_return=".URL_BASE."/donated.php&no_note=1¤cy_code=".$currency."&bn=PP-BuyNowBF"); header("Location: https://$URL?$fields"); exit; ?>