Hello,
I am developing a new website that will be selling stuff online. When people buy the stuff, they can customize how they want it to come out (ie what color, etc). But for every customization request, the price changes (ie make it blue add $20).
What I have is a page where the user submits their info (name, number, address ..etc) to buy the product. On that page, it has the price of what they are paying for with a dropdown menu with all the colors and other options. The user can change the options and then order the item.
What I need is to have a button that recalculates the price of the item with all the options. The problem is that I cannot make a form because the fields are already in a form of their own. From what i was thinking to do was to make the button that recalculates with a link to the php page itself and the "next" button to go to the credit card page with a link to another php page where all the variables are sumited.
I was thinking about making the total price in a textbox and just update it using javascript -- but that would look bad and I'd rather have it "embeded" inside the page with the rest of the text.
How can I accomplish this?
Thanks in advance