How to add Paypal payment to a website

CN624

Registered User
Messages
186
Hi,
I'm adding paypal cart to a website just want to know if the code I'm using below is correct. Where my paypal account is CN624@CN624.com for example.

Tried to use the paypal sandbox to test and its easier to find a needle in a haystack.


[div]
<!-- START PAYPAL FORM 1 -->
<form target="paypal"
action="https://www.paypal.com/cgi-bin/webscr" method="post"
style="margin: 0px">

<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="CN624@CN624.com">
<input type="hidden" name="item_name" value="Picture 1-1">
<input type="hidden" name="amount" value="1000.00">
<input type="hidden" name="custom" value="">
<input type="hidden" name="return" value="http://CN624.com/thanks-payment.htm">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="add" value="1">
<input type="hidden" name="quantity" value="1">
<input type="submit" value="Add to Cart" onmouseover="this.className='buttonon'" onmouseout="this.className='button'" class="button"><br>
</form>
<!-- END PAYPAL FORM 1 -->
[/div]
 
Back
Top