 |  |  |
 
| |
Now you can accept payments on your website in any of the currencies supported by PayPal through the Multiple Currencies feature.
The instructions below will show you how to create a PayPal payment button in the currency of your choice for any of the following website payment solutions:Creating a New Payment Button | |
To create a new payment button in your desired currency, select the currency from the "Currencies" drop-down menu in the button factory.
For an example of a non-U.S. Dollar payment button, see the "Sample Code" section below.
Converting an Existing Payment Button | |
If you already have payment buttons on your website, you can convert the buttons to a different currency by adding one line of HTML code. (Make sure you also convert the item amount when you convert your buttons to another currency.) For example, if you wish to accept payment in Euros, specify the currency_code in your payment button as follows:
<input type="hidden" name="currency_code" value="EUR"> |
|
The value you specify for the currency_code should be one of the following available currencies: Currency | Value | Australian Dollar (A $) | AUD | Canadian Dollar (C $) | CAD | Euro (€) | EUR | British Pound (£) | GBP | Japanese Yen (¥) | JPY | U.S. Dollar ($) | USD | New Zealand Dollar ($) | NZD | Swiss Franc | CHF | Hong Kong Dollar ($) | HKD | Singapore Dollar ($) | SGD | Swedish Krona | SEK | Danish Krone | DKK | Polish Zloty | PLN | Norwegian Krone | NOK | Hungarian Forint | HUF | Czech Koruna | CZK | Israeli New Shekel | ILS | Mexican Peso | MXN | Brazilian Real (only for Brazilian members) | BRL | Malaysian Ringgit (only for Malaysian members) | MYR | Philippine Peso | PHP | New Taiwan Dollar | TWD | Thai Baht | THB | Turkish Lira (only for Turkish members) | TRY | Indian Rupee (only for Indian members) | INR | Russian Ruble | RUB |
|
If the currency_code is omitted, the default currency will be U.S. Dollars. Here's what the payment button code looks like for an item priced in Pounds Sterling: <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="sales@@UKstore.com" > <input type="hidden" name="item_name" value="Union Jack Flag"> <input type="hidden" name="amount" value="20"> <input type="hidden" name="currency_code" value="GBP"> <input type="hidden" name="undefined_quantity" value="1"> <input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-butcc.gif" border="0" name="submit" width="73" height="44"> </form>
|
|
For more information on creating payment buttons, please visit our Business Resource Center or the PayPal Developer Network. |
|