php - Classic API pt-BR Forum Submission (UK Account) -
hopefully here can hope basic question.
i'm creating basic form donation amount in brazilian real, when submit button pressed re-directs uk paypal site in english (which means people submitting donation dont understand it). amount goes though correctly in brl there way force site use pt-br language?
i've tried using https://www.paypal.com.br/cgi-bin/webscr , https://www.paypal.com/br/cgi-bin/webscr in action neither work.
anyone have ideas please? paypal saying need register br paypal account (which cant dont have bank account on there)
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="currency_code" value="brl"> <input type="hidden" name="lc" value="pt-br"> <input type="hidden" name="doexpresscheckoutpayment" value="br"> <input type="hidden" name="setexpresscheckout" value="br"> <input type="hidden" name="doreferencetransaction" value="br"> <input type="hidden" name="cmd" value="_donations"> <input type="hidden" name="business" value="paypal@url.com"> <input type="hidden" name="item_name" value="doar"> digite relaƧao em r$ <input type="visible" name="amount" value="0.00"> <input type="hidden" name="item_number" value="1200"> <input type="hidden" name="first_name" value=""> <input type="hidden" name="last_name" value=""> <input type="hidden" name="address1" value=""> <input type="hidden" name="address2" value=""> <input type="hidden" name="city" value=""> <input type="hidden" name="state" value=""> <input type="hidden" name="zip" value=""> <input type="hidden" name="night_phone_a" value=""> <input type="hidden" name="night_phone_b" value=""> <input type="hidden" name="night_phone_c" value=""> <input type="hidden" name="email" value=""> <input type="hidden" name="return" value="http://url.com/?page_id=310"> <input type="image" name="submit" border="0" src="http://url.com/images/buttons/donate.png" alt="paypal - safer, easier way pay online"> </form>
Comments
Post a Comment