I just need to be able to use a HTML or javascript form of some type that lets customers pick two seperate options to determine prices. BASE cost: $100. First, Size options: Option Small ($100) , Option Medium ($200), or Option Big ($300) (so a small is $100+$100) Then currency options. They don't have to update automatically as I will change them myself. Just three currency options: US dollar, Euro, and British Pound. For this example let's put the Euro at 0.80 per dollar, and the UK Pound at 0.65 per dollar. Ideally I'm using this in a table. One drop down menu to let them pick currency. A second drop down menu to let them pick the size for the product. The numbers displayed will be in a seperate table cell than the drop down menus. Basically the two drop down menus will multiply the number based on their factors. This is probably easy to do, but if someone could give me the code it would be extremely appreciated. So a Small object is $100+$100, but in Euros that would be €160. I basically want that number to change like that. edit: PHP is also welcome if it works.
Thanks for the solidarity?? All I REALLY need to be able to code this myself is to know how to make a VALUE in PHP for Form options. <form name="Form1"> <select name="Options for Size" size="1"> <option value="<?php $size = small ?>" selected >Small</option> Code (markup): because then I could display various results if the user chooses $size = small. Anyone know how to do that? (my above code is obviously wrong)