I'm having some trouble understanding how I can send my shopping cart items to PayPal using the IPN service without using the 'Buy Now' buttons which many tutorials seem to demonstrate.
So my shopping cart details are stored within $_SESSION['cart'] as a multidimensional array.
e.g:
$_SESSION['cart'][0]['item_price']
$_SESSION['cart'][0]['item_name']
$_SESSION['cart'][0]['item_description']
$_SESSION['cart'][1]['item_price'] ...
I know that a listener is involved for the rest of the process however I cannot see how I can send the item details such as name and cost to paypal for payment processing.
Is cURL involved in anyway. Any information would be very helpful!