Sell And Buy

Showing posts with label payment gateway php. Show all posts
Showing posts with label payment gateway php. Show all posts

Monday, 2 February 2015

How to add SKRILL Payment Gateway to your webpage using PHP

For Skrill Payment Gateway integration using PHP, Please Copy the Below code and use in your web page, For More Info Click here


<form action="https://www.moneybookers.com/app/payment.pl" method="post" target="_blank">
<input type="hidden" name="pay_to_email" value="merchant@skrill.com">
<input type="hidden" name="transaction_id" value="A10005">
<input type="hidden" name="return_url" value="http://www.moneybookers.com/payment_made.html">
<input type="hidden" name="cancel_url" value="http://www. moneybookers.com/payment_cancelled.html">
<input type="hidden" name="status_url" value="https://www. moneybookers.com/process_payment.cgi">
<input type="hidden" name="language" value="EN">
<input type="hidden" name="merchant_fields" value="customer_number, session_id">
<input type="hidden" name="customer_number" value="C1234">
<input type="hidden" name="session_ID" value="A3DFA2234">
<input type="hidden" name="pay_from_email" value="payer@skrill.com">
<input type="hidden" name="amount2_description" value="Product Price:">
<input type="hidden" name="amount2" value="29.90">
<input type="hidden" name="amount3_description" value="Handling Fees & Charges:">
<input type="hidden" name="amount3" value="3.10">
<input type="hidden" name="amount4_description" value="VAT (20%):">
<input type="hidden" name="amount4" value="6.60">
<input type="hidden" name="amount" value="39.60">
<input type="hidden" name="currency" value="GBP">
<input type="hidden" name="firstname" value="John">
<input type="hidden" name="lastname" value="Payer">
<input type="hidden" name="address" value="Payerstreet">
<input type="hidden" name="postal_code" value="EC45MQ">
<input type="hidden" name="city" value="Payertown">
<input type="hidden" name="country" value="GBR">
<input type="hidden" name="detail1_description" value="Product ID:">
<input type="hidden" name="detail1_text" value="4509334">
<input type="hidden" name="detail2_description" value="Description:">
<input type="hidden" name="detail2_text" value="Romeo and Juliet (W. Shakespeare)">
<input type="hidden" name="detail3_description" value="Special Conditions:">
<input type="hidden" name="detail3_text" value="5-6 days for delivery">
<input type="hidden" name="confirmation_note" value="Sample merchant wishes you pleasure reading your new book!">
<input type="submit" value="Pay!">
</form>

Saturday, 6 December 2014

How to Create Paypal Integration Using PHP




Follow All the steps and Successfully Add Paypal Integration In your Website


For More Info Visit : Paypal Integration Using PHP

https://www.youtube.com/watch?v=TgiwQ9MljcM  

 
Step 1
Create a Paypal Sandbox account at https://developer.paypal.com/
Step 2
computoit
How to integrate with Paypal Using PHP
Now create test accounts for payment system. Take a look at Sandbox menu left-side top Sandbox->Test Accounts
Step 3
Here I have created two accounts Buyer (personal) and Seller (merchant/business)

index.php

Contains PHP code. Displaying products, product image, product name and product price. Here you have to give your business(seller) $paypal_id id. Modify paypal button form return and cancel_return URLs.
success.php

Paypal payment success return file. Getting Paypal argument like item_number. Paypal data success.php?tx=83437E384950D&st=Completed&amt=10.00&cc=USD&cm=&item_number=1
cancel.php

Paypal API cancel_return file.
 Step 4
When your web application test payment system workflow is completed. Change the form action development API URLs to original API URLs and give valid $paypal_id seller email id.



$paypal_url='https://www.sandbox.paypal.com/cgi-bin/webscr';
//to
$paypal_url='https://www.paypal.com/cgi-bin/webscr';

For More Info Visit : Paypal Integration Using PHP