There will be 6 customisable options on a product, example, one drop down list (only one selectable), three items with check boxes (up to 5 items from the list can be selected) and two with radio buttons (either or). I can code this fine and that's OK (well I hope so anyway
The problem I have is how to deal with this when trying to send the order to Paypal for payment. If basic selection (ie one item without additional customisation) then I can send item description and item code across to paypal. Here's the code I use to send the info to paypal currently. The trouble is that I can't figure out how to get this code to send across my customised entries from the prosepctive purchaser.
Here's the paypal code I have
<div>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="business" value="paypal username in here">
<input type="hidden" name="add" value="1">
<input type="hidden" name="item_name" value="item name goes in here">
<input type="hidden" name="item_number" value="product code in here">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="amount" value="40">
<input type="hidden" name="shopping_url" value="http://www.xxx.yyy/item1">
<input type="image" src="https://www.paypal.com/images/x-click-but22.gif" border="0" name="submit20" alt="Make payments with PayPal - it's fast, free and secure!">
</form>
</div>
Am I making sense and is this somethign i can do. I'm quite desperate to deal with this as am having quite a lot of problems at the moment with things not going as planned.
Thank you for checking and fingers crossed for some help.



Print Thread
deleted