Login
Web Design Banner - Custom Web Design Web Hosting - Friendly Ongoing Support 3 page website - from £149 6 page website - from £249 Email Accounts - customised email addresses

Integrating PayPal

Paypal integration is a method of taking payments from your website using the paypal service, Paypal already have all the necessary processes in place to take payments from credit cards and bank accounts securely, we utilise these processes to enable you to have a payment process on your website.


Using a Payment Button

Putting a payment button onto your website is simple. You can use the PayPals button factory to create the code, you just need to paste the HTML that you get into your website. You will receive an email from PayPal with the details of the transaction.


Example code for a simple PayPal button

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
   <input type="hidden" name="cmd" value="_xclick">
   <input type="hidden" name="notify_url" value="http://www.yourdomain.co.uk/ipn.asp">
   <input type="hidden" name="amount" value="10.00">
   <input type="hidden" name="currency_code" value="GBP">
   <input type="hidden" name="return" value="http://www.returnurl.co.uk/pasge.html">
   <input type="hidden" name="item_name" value="YourItemName">
   <input type="hidden" name="business" value="youremail@paypal.co.uk">
   <input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_paynowCC_LG.gif" border="0"    name="submit" alt="PayPal - The safer, easier way to pay online.">
   <img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>

Before using the code above you will need to create a PayPal account and enter your own information into the Value"" fields


Link to help with PayPal Buttons

Instant Payment Notification

It is worth reading into how to implement IPN as this is an easy way to get notification back from PayPal when the transaction is complete. You will notice in the code above that there is a name="notify_url" and the address to your IPN page. This is a page that the user does not see and exists to verify the transaction. You can use this page perform database function on your own site if you need to update stock levels or send email notifactions to customers.

PayPal guide to Instant Payment Notification