Table of Contents
PHP integrates PayPal standard payment, PHP integrates PayPal standard
Home Backend Development PHP Tutorial Integrate PayPal standard payment in PHP, PHP integrates PayPal standard_PHP tutorial

Integrate PayPal standard payment in PHP, PHP integrates PayPal standard_PHP tutorial

Jul 12, 2016 am 08:59 AM

PHP integrates PayPal standard payment, PHP integrates PayPal standard

The PayPal payment function has been updating documents and interfaces. What is mentioned here is a simple payment function and the general process is as follows

1. On the checkout page of the website, set up a form to submit to the PayPal website, which contains some amount, product name, merchant payment account number, return URL after successful checkout, etc.

2. When the user checks out, click the 'Checkout with PayPal' button to reach PayPal's checkout page, enter your PayPal username and password and confirm the payment

3. PayPal will decide which page to return to the website based on whether the payment is successful, and initiate a post request to a certain page of the website in the background. This action is called IPN, which tells the website the payment status, such as completed Payment is completed

4. After the website receives PayPal’s notify notification, it can deliver goods or other processing logic to the user

Here’s a picture to explain

Integrate PayPal standard payment in PHP, PHP integrates PayPal standard_PHP tutorial

Simpler flow chart

Integrate PayPal standard payment in PHP, PHP integrates PayPal standard_PHP tutorial

 
Copy after login
我们要完成整个流程,其实只需要两个页面来处理
Copy after login

Record the code:

checkout.php This page can actually be HTML

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="ev_csrf" value="9878824eb2cf4f1075dfa43c216d7cec">	
<input type="hidden" name="cmd" value="_cart"> 		
<input type="hidden" name="upload" value="1"> 		
<input type="hidden" name="charset" value="utf-8"> 		
<input type="hidden" name="currency_code" value="USD"> 		
<input type="hidden" name="business" value=sales@test.com> 		
<input type="hidden" name="cancel_return" value=&rdquo;http://www.test.com/checkout.html&rdquo;> 
<input type="hidden" name="return" value=&rdquo;http://www.test.com/thanks.html&rdquo;>	
<input type="hidden" name="notify_url" value="http://www.test.com/notify.php">	
<input type="hidden" name="custom" value="userid:31;ip:182.114.240.221"> 	
<input type="hidden" name="item_number" value="ARO0101"> 		
<input type="hidden" name="item_name" value="AD182m"> 		
<input type="hidden" name="quantity" value="1"> 		
<input type="hidden" name="amount" value="70"> 		
<input type="submit" value="Checkout with PayPal"> 	
</form>
Copy after login

 

这个form中包含了一些PayPal支付必须要加的项,需要注意的是notify.php是PayPal会在后台进行调用的
Copy after login
notify.php这个页面有两个功能,一个是接收PayPal的post内容并加上标签返回,一个是接收到PayPal的认证信息之后进行网站内部的逻辑处理
Copy after login
$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); 
}
Copy after login

 

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1100147.htmlTechArticlePHP integrates PayPal standard payment, and php integrates paypal standard PayPal payment function. In fact, documents and interfaces have been updated, as stated here It is a simple payment function and the general process is as follows 1. On the Internet...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1670
14
PHP Tutorial
1274
29
C# Tutorial
1256
24
Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Explain secure password hashing in PHP (e.g., password_hash, password_verify). Why not use MD5 or SHA1? Apr 17, 2025 am 12:06 AM

In PHP, password_hash and password_verify functions should be used to implement secure password hashing, and MD5 or SHA1 should not be used. 1) password_hash generates a hash containing salt values ​​to enhance security. 2) Password_verify verify password and ensure security by comparing hash values. 3) MD5 and SHA1 are vulnerable and lack salt values, and are not suitable for modern password security.

PHP and Python: Comparing Two Popular Programming Languages PHP and Python: Comparing Two Popular Programming Languages Apr 14, 2025 am 12:13 AM

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP in Action: Real-World Examples and Applications PHP in Action: Real-World Examples and Applications Apr 14, 2025 am 12:19 AM

PHP is widely used in e-commerce, content management systems and API development. 1) E-commerce: used for shopping cart function and payment processing. 2) Content management system: used for dynamic content generation and user management. 3) API development: used for RESTful API development and API security. Through performance optimization and best practices, the efficiency and maintainability of PHP applications are improved.

How does PHP type hinting work, including scalar types, return types, union types, and nullable types? How does PHP type hinting work, including scalar types, return types, union types, and nullable types? Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

The Enduring Relevance of PHP: Is It Still Alive? The Enduring Relevance of PHP: Is It Still Alive? Apr 14, 2025 am 12:12 AM

PHP is still dynamic and still occupies an important position in the field of modern programming. 1) PHP's simplicity and powerful community support make it widely used in web development; 2) Its flexibility and stability make it outstanding in handling web forms, database operations and file processing; 3) PHP is constantly evolving and optimizing, suitable for beginners and experienced developers.

PHP and Python: Different Paradigms Explained PHP and Python: Different Paradigms Explained Apr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: Code Examples and Comparison PHP and Python: Code Examples and Comparison Apr 15, 2025 am 12:07 AM

PHP and Python have their own advantages and disadvantages, and the choice depends on project needs and personal preferences. 1.PHP is suitable for rapid development and maintenance of large-scale web applications. 2. Python dominates the field of data science and machine learning.

How do you prevent SQL Injection in PHP? (Prepared statements, PDO) How do you prevent SQL Injection in PHP? (Prepared statements, PDO) Apr 15, 2025 am 12:15 AM

Using preprocessing statements and PDO in PHP can effectively prevent SQL injection attacks. 1) Use PDO to connect to the database and set the error mode. 2) Create preprocessing statements through the prepare method and pass data using placeholders and execute methods. 3) Process query results and ensure the security and performance of the code.

See all articles