Skip to main content

Posts

Showing posts with the label PayPal

How to setup PayPal Standard Payment integration with PHP

PayPal Standard Payment  I think you have already create business account in PayPal. And setup Instant Payment Notification Preferences Here are simple method for " Instant Payment Notification Preferences " setup Click on edit profile 1. Under ‘ Selling Preferences ’ >> ‘ Instant Payment Notification Preferences ’ a: Set the IPN value to ‘On’ b: Set the IPN URL "http://www.techsudhir.com/ipn.php" HTML Payment Parameter SIMPLE HTML FORM //Set useful variables for paypal form $paypalURL = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; //Test PayPal API URL //$paypalURL = 'https://www.paypal.com/cgi-bin/webscr'; //Live PayPal API URL $paypalID = 'sales@techsudhir.com'; //Business Email <form action="<?php echo $paypalURL; ?>" method="post"> <!-- Identify your business so that you can collect the payments. --> <input type="hidden" name=...