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:

enter image description here


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -

openssl - Load PKCS#8 binary key into Ruby -