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

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

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