Created
September 20, 2012 20:10
-
-
Save xcommerce-gists/3758054 to your computer and use it in GitHub Desktop.
How to Test PayPal Payments Standard Buttons.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang=en> | |
<head> | |
<meta charset=utf-8> | |
<title>Testing a PayPal Payments Standard Button</title> | |
</head> | |
<body> | |
<h2>Buy Strings!</h2> | |
<table> | |
<tr> | |
<td>Bass Guitar Strings</td> | |
<td> | |
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> | |
<input type="hidden" name="cmd" value="_s-xclick"> | |
<input type="hidden" name="hosted_button_id" value="6RNT8A4HBBJRE"> | |
<input type="image" | |
src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" | |
border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"> | |
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" | |
width="1" height="1"> | |
</form> | |
</td> | |
</tr> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment