Click to See Complete Forum and Search --> : One Time Setup Charge
mexavin
11-25-2003, 06:10 PM
Good Evening,
I am trying to figure out how to have a "one time fee" in a form.
Example:
Order shirts @ $5.00 each
One Time Setup fee (hidden) of $25.00.
Customer purchases 10 shirts.
(10shirts X $5.00) + $25.00 fee = $75.00.
I want to be able to send this info from a form. Seems to always just charge an extra $25.00 per item.
Any ideas?
Thanks,
Mex
Hmm... not sure what you are asking - maybe showing some code would help.
mexavin
11-25-2003, 06:33 PM
Here is a snippet of the order form. Does this help?
<html>
<head>
<title>shirt</title>
</head>
<body bgcolor="#ffffff" >
<table cellspacing="0" cellpadding="2" border="0" width="100%" align="center">
<tr>
<td align="right" nowrap>
<form method=post action="shopaddtocart.asp"><span class=featurebold>
<br>
<br>
<br>
<span class=featurebold>Select a Size</span><br>
<select class=txtfielddropdown size=1 name=Feature1>
<option selected>Select</option>
<option>Small</option>
<option>Medium</option>
<option>Large</option>
<option>X-Large</option>
<option>XX-Large[$2.00]</option>
</select>
<br>
<input type=hidden name='SelectList1' value="41">
<br>
<span class=featurebold>Select a Color</span><br>
<select class=txtfielddropdown size=1 name=Feature2>
<option selected>Select</option>
<option>Light Blue</option>
<option>White</option>
</select>
<br>
<input type=hidden name='SelectList2' value="46">
<input type=hidden name='Required' value="14,19">
<p> </p>
<p><span class=featurebold> Minimum order is 6 Units</span>
<input TYPE=TEXT class=txtfield size=2 maxlength=3 name=quantity value="6">
<input type=submit class=submitbtn value="Order" name=Order>
<br>
<input type=hidden name=productid value="685">
</form></p>
</td>
</tr>
</table>
</body>
</html>