Click here to Skip to main content
15,891,902 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have an item which is available with and without Maintenance and support cost. Maintenance and support cost will depends on total number of items. I need to charge Maintenance and support cost along with the total cost. Is there any HTML variable in paypal checkout page where I can set this cost?

I'm using following sample code to create paypal page:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
 <input type="hidden" name="cmd" value="_xclick">
 <input type="hidden" name="business" value="seller_id">
 <input type="hidden" name="item_name"  value="My item name">
 <input type="hidden" name="item_number" value="My item number">
 <input type="hidden" name="amount" value="1.00">
 <input type="hidden" name="currency_code" value="USD">
 <input type="submit" value="Buy now">
</form>


Any help is greatly appreciated.
Regards,
Anshh
Posted
Updated 30-Apr-10 0:11am
v3

1 solution

Check these

Paypal - Buttons for donations[^](Customize option there)
PayPal Developer Network[^] You need this
And a CP Tip/Trick How to add a donation button for a Paypal gateway[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900