what is the & in a variable
Posted: Wed May 13, 2015 1:17 pm
i have been sent some variables from PAYPAL
the variable i have at the moment are
how do i use the news ones with the old ones as i am unsure why they have a & instead of the $
thanks
Code: Select all
&custom=
&tax=0.00
&quantity=1
&mc_fee=1.25
&payment_fee=
&item_name=
&item_number=
&test_ipn=1
&receipt_id=0000-0000-0000-0000
&handling_amount=0.00
&shipping=0.00
Code: Select all
$itemNumber = $_POST['item_number'];
$paymentStatus = $_POST['payment_status'];
$payerStatus = $_POST['payer_status'];
$pendingReason = $_POST['pending_reason'];
$txnID = $_POST['txn_id'];
$receiverEmail = $_POST['receiver_email'];thanks