Im trying to pass some variables through my donation button to be used with my db after the transaction is processed. Heres the situation:
1. User hits the form page below. They can select to make a cash or non-cash type of donation.
2. After hitting the Continue button in the form above, they go to donor.php. If they chose a non-cash/volunteer type of donation, I insert the user info I collected on the form into my db. If they chose a cash donation, then they get the PayPal donation button below.
I need the user info from the form to pass through PayPal so that upon successful payment, the users info can then be inserted into my db. How/where would I pass the form variables through the button below?
if ($type == "equipment"|| $type == "services")
{
***Code that handles non-cash donations**
}
else {
echo ("Thank you for your support! Please click the button below to complete your secure donation via PayPal.
");
echo ("");
}
?>
3. My ipn_validate.php was adopted from the code examples:
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
$value = urlencode(stripslashes($value));
$req .= "&$key=$value";
}
// post back to PayPal system to validate
$header .= "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";
$fp = fsockopen ('www.sandbox.paypal.com', 80, $errno, $errstr, 30);
// assign posted variables to local variables
$payment_status = $_POST['payment_status'];
$first_name = $_POST['first_name'];
$last_name = $_POST['last_name'];
$address = $_POST['address_street'];
$city = $_POST['address_city'];
$state = $_POST['address_state'];
$zip = $_POST['address_zip'];
$email = $_POST['payer_email'];
$payment_amount = $_POST['mc_gross'];
$txn_id = $_POST['txn_id'];
$date = $_POST['payment_date'];
/* I want to be able to pass through my user_id, phone, and type variables here too */
if (!$fp) {
// HTTP ERROR
} else {
fputs ($fp, $header . $req);
while (!feof($fp)) {
$res = fgets ($fp, 1024);
if (strcmp ($res, "VERIFIED") == 0) {
// check the payment_status is Completed
// check that txn_id has not been previously processed
// check that receiver_email is your Primary PayPal email
// check that payment_amount/payment_currency are correct
// process payment
}
else if (strcmp ($res, "INVALID") == 0) {
// log for manual investigation
}
}
fclose ($fp);
}
?>
4. The user gets directed to a thanks.php after completing transaction where I would like to echo back the variables passed through (for now, just to be sure they're getting through...later they'll go into my db).
Im fairly new to php and to PayPal
.Im trying to learn a lot at once! Any help is greatly appreciated! Ive tried other forums, but have received some vague suggestions that dont really clarify anything for me. Thanks!
Kjersti