id; } $order_time = time(); // Write user id to paypal table, so the return script knows it's expecting this payment $sql = "INSERT INTO donation_paypal SET order_time = '".$order_time."', userid = '$userid', item_number=".$item_id.", order_amount = '$amount'"; mysql_query($sql); $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&rm=2&cancel_return=".URL_BASE."donated.php&no_note=1¤cy_code=".$currency."&bn=PP-BuyNowBF"); header("Location: http://$URL?$fields"); exit; ?>