If i include some variables in "return" and send to paypal, how paypal will send back to me when i get back?
<input type="hidden" name="return" value='http://www.xxx.xx/order/complete.jsp?ordercode=ABCD&cn=aa,bb'>
will paypal encode my URL to like this?
http://www.xxx.xx/order/complete.jsp?ordercode=ABCD&cn=aa%2Cbb
or this?
http://www.xxx.xx/order/complete.jsp?ordercode=ABCD&cn=aa,bb
Thanks.