Php shopping website payment paypal usage _ PHP Tutorial

Source: Internet
Author: User
Tags form post
Php shopping website payment paypal usage method. For details, see cms. paypal. comuscgi-bin? The data record the cmd_render-content will send is an array $ paypalDataarray (add1, cmd_ext-enter, redirect_cm for details:

Https://cms.paypal.com/us/cgi-bin? Cmd = _ render-content & content_ID = developer/e_howto_html_Appx_websitestandard_htmlvariables

Define the constant paypalurl

Const PAYPAL_URL = 'https: // www.sandbox.paypal.com /';

The data record to be transferred is an array

$ PaypalData = array (
'Add' => 1,
'Cmd' => '_ ext-enter ',
'Redirect _ cmd' => '_ xclick ',
'Business' => $ paypalAccount, -------- liangliangfeng211@gmail.com this is the recipient's paypal account
'Item _ name' => '51mimimprint shopping cart ',
'Item _ number' => $ order-> id,
'First _ name' => $ address-> first_name,
'Last _ name' => $ address-> last_name,
'Addresses' => $ address-> address1,
'City' => $ address-> city,
'State' => $ address-> state_or_province,
'Zip' => $ address-> zip_code,
'Amount '=> $ order-> subtotal,
'Shipping' => $ order-> shipping_timeout,
'No _ note' => 1,
'Currency _ code' => 'use ',
'LC '=> 'us'
);

Convert the array into a url address.

$ PaypalArguments = array ();
Foreach ($ paypalData as $ k => $ v ){
Array_push ($ paypalArguments, $ k. '='. urlencode ($ v ));
}
$ PaypalUrl = self: PAYPAL_URL .'? '. Implode (' & ', $ paypalArguments );
$ This-> _ redirect ($ paypalUrl );

Next, we should set the address of the Paypal interface:

Https://www.sandbox.paypal.com/cgi-bin/webscr

Basic process
When the customer pays you, PayPal will send a notification to the server located in the specified URL (type = "hidden" name = "yy_url" value =. This notification will include all your customer's payment information (for example, customer name, amount) and a piece of encryption code. When the server receives a notification, it then sends the message (including the encrypted code) back to a secure PayPal URL. PayPal will verify the identity of the transaction by checking the encrypted string. This operation of sending IPN data back to PayPal prevents "spoofing", so you can ensure that IPN comes from PayPal. During verification, PayPal will send the confirmation information of its validity back to your server.

Prompt: To enable instant payment notification, you need to enter a URL through which you can receive notifications from your users.

After the instant payment notification is enabled, your server receives a notification every time you receive the payment. this notification will be sent to the specified URL in a hidden form post mode, all payment information will be included. The FORM variable of the notification is listed at the bottom of this page.

Each time you receive an IPN from PayPal, you must complete the following notification confirmation process before implementing the order. Confirming the information listed will ensure that the transaction is legal.

Notification confirmation IPN
To ensure that the payment has been made to your PayPal account, you must verify that the email address used as "receiver_email" has been registered with your PayPal account and has been confirmed.

After the server receives an instant payment notification, you need to build an http post sent to PayPal to confirm it. Your POST should be sent to the https://www.paypal.com/cgi-bin/webscr

You must send all received form variables exactly as they are when you receive the form variables. You also need to append a variable named "cmd" (for example, cmd = _ policy-validate) with the value of "_ policy-validate" to the POST string.

PayPal will reply to the POST and include the word "VERIFIED" or "INVALID" in the body of the response ". When you receive a VERIFIED reply, you need to perform several checks before implementing the order:

Confirm that "payment_status" is "Completed" because the system will also send IPN for other results (such as "Pending" or "Failed.
Check whether "txn_id" is repeated to prevent the fraudster from reusing the Old completed transaction.
Verify that "receiver_email" is an email address that has been registered with your PayPal account to prevent sending payments to the account of the fraudster.
After checking other transaction details (such as item numbers and prices) to confirm that the price has not changed, you can use IPN data to update your database and process the purchase.
If an "invalid" notification is received, it shall be deemed as a suspicious notification and should be investigated.

License https://cms.paypal.com/us/cgi-bin? Cmd = _ render-content the data record to be transferred is an array $ paypalData = array ('add' = 1, 'cmd' = '_ ext-enter ', 'redirect _ cm...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.