Created
December 16, 2012 04:52
-
-
Save K90j1/4303427 to your computer and use it in GitHub Desktop.
The form for web payment standard with Sandbox of Paypal.
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
| <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" accept-charset="utf-8"> | |
| <input type="hidden" name="business" value="Mail address of Seller" /> | |
| <input type="hidden" name="item_name" value="Item Name" /> | |
| <input type="hidden" name="amount" value="Item Amount" /> | |
| <input type="hidden" name="quantity" value="1" /> | |
| <input type="hidden" name="currency_code" value="JPY" /> | |
| <input type="hidden" name="lc" value="jp_JP" /> | |
| <input type="hidden" name="charset" value="UTF-8" /> | |
| <input type="hidden" name="cancel" value="http://example.com/cancel.html" /> | |
| <input type="hidden" name="return" value="http://example.com/success.html" /> | |
| <input type="hidden" name="notify_url" value="http://example.com/ipn_paypal.html" /> | |
| <input type="hidden" name="cmd" value="_xclick" /> | |
| <input type="submit" name="submit" value="Send" /> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment