I want to get my previous $_SESSION['cart']
to the Paypal IPN
Sample of IPN Code I use. Everything working fine and script got the $_POST
data from Paypal.
if (strcmp ($res, "VERIFIED") == 0) {
$subject = time();
$to = '[email protected]';
foreach ($_POST as $key => $value) {
$body .= "\n$key: $value";
}
mail($to, $subject, $body);
}
Question
if (strcmp ($res, "VERIFIED") == 0) {
// 1. How to get my previous $_SESSION['cart'] here?
// 2. When I call my $_SESSION['cart'] here not ouput will come & it's empty.
// 3. Or this code only to get $_POST data from Paypal website only?
}