How to add product description in paypal through html hidden field? -
i want add product description paypal shopping cart , using html hidden fields send form data.
can suggest should pass inorder display product description?
thanks in advance co-operation.
if mean description field "add description" on payment site @degales wrong , @aditya menon right. on0 , os0 parameters used options size:s.
example:
<input name="item_name" type="hidden" value="t-shirt" /> <input type="hidden" name="on0" value="size"> <input type="hidden" name="os0" value="s">   and
$data['item_name'] = $_post['item_name']; $data['on0'] = $_post['on0']; $data['os0'] = $_post['os0'];   result:

Comments
Post a Comment