PHP integrates PayPal standard payment, php integrates paypal Standard _ PHP Tutorial

Source: Internet
Author: User
PHP integrates the PayPal standard payment, and php integrates the paypal Standard. PHP integrates the PayPal standard payment, php integrates the paypal Standard PayPal payment function, in fact, the document and interface have been updated, here is a simple payment function, the approximate process is as follows 1, integrate PayPal standard payment in PHP and php with paypal Standard

In fact, the PayPal payment function has been updating documents and interfaces. here we talk about a simple payment function. the general process is as follows:

1. on the checkout page of the website, set a form submitted to the PayPal website, which contains the amount, product name, Merchant's collection account, and URL returned after successful checkout,

2. you can click the 'use PayPal checkout 'button to go to the PayPal checkout page, enter your PayPal username and password, and confirm the payment.

3. PayPal determines which page of the website is returned based on whether the payment is successful, and initiates a post request to a page of the website in the background. this action is called IPN, tell the website the receipt of the payment. for example, completed indicates that the payment is complete.

4. The website can deliver the goods or other processing logic to the user after receiving the Alipay notification from PayPal.

Here is an illustration.

Simpler flowchart

 
To complete the entire process, we only need two pages for processing.

Record the code:

The checkout. php page can actually be HTML

 

  

This form contains some items that must be added for PayPal payment. Note that Alipay Y. php is called by PayPal in the background.
Notify. php has two functions on this page. one is to receive the post content of PayPal and add the returned tag. The other is to process the website logic after receiving the authentication information of PayPal.
$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 ('ssl://www.paypal.com', 443, $errno, $errstr, 30); if (!$fp) { // HTTP ERROR } else {//HTTP OK fputs ($fp, $header . $req); while (!feof($fp)) { $res = fgets ($fp, 1024); if (strcmp ($res, "VERIFIED") == 0) {//process business of website } else if (strcmp ($res, "INVALID") == 0) { // log for manual investigation } } fclose ($fp); }

  

In fact, the Alipay PayPal payment function has been updating documents and interfaces. here we talk about a simple payment function in the following process: 1...

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.