PayPal Item Name/Description on separate lines using forms -


i processing simple form paypal's express checkout using basic standard free account , standard form "_xclick" option.

when passing through item name or description, understand limited 144 characters want have information inside title or description on different lines separate information when on paypals checkout area user can see paying for.

i have tried use "\r" , "\n" seperate lines, seen below in "item_name" input using "this line 1\r\nthis line 2\r\nthis line 3", ignores "\r" , "\n" when passed through paypal payment page , when sent in receipt email.

current example code:

<form name="theform" method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">       <input type="hidden" name="cmd" value="_xclick">   <input type="hidden" name="currency_code" value="gbp">   <input type="hidden" name="item_name" value="this line 1\r\nthis line 2\r\nthis line 3">   <input type="hidden" name="price" id="price" value="" />   <input type="hidden" name="business" value="test@test.com">   <input type="hidden" name="amount" value="">   <input type="hidden" name="no_shipping" value="1">   <input type="submit" name="submit" id="submit" value="process payment" /> </form> 

i have tried using &#10;, &#13;, <br> , <br /> , none of these work either , passed through text.

how can achieve separating item information on seperate lines using form option input value, shown above, item description or title please way have tried not work , cannot find solution?

thanks.

currently there not way this. standard buy buttons not support this. closest can come putting things on different line using cart upload method. instead of passing on 1 item, 3 values in item name want displayed on 3 different lines pass on 3 individual items cause them on 3 different lines.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -