Hello,
I hope someone has the time to help me.
I have a form that lists a variable price in
<input type=hidden name=price value=1>
I have a drop down box letting the user choose a quantity in
<select name=quantity>
<option value=1>1</option>
<option value=2>2</option>
etc...
I have a html form input field that I want to show the price in
<input type=text name=total_price>
How do I hook all this up so that the "total_price" field will display the variable price and multiply it by the quantity option to give a total numerical figure of cost?
Thanks,
KD