One Time Setup Charge

windows

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