Hello. I have only written a few very basic php pages nothing complex at all. So i need some help on how to do this.
I need a calculator/list script.
What I would like to do is take a value from radios and checkmarks and add them together and at the same time make a list
<input name="checkbox" value="1000" type="checkbox"><b>Multimedia</b></input>
<input name="group1" value="0" type="radio"><b>No Borders</b></input>
<input name="group1" value="50" type="radio"><b>Borders</b></input>
<input name="checkbox" value="2000" type="checkbox"><b>Equipped</b></input>
<input name="group2" value="0" type="radio"><b>No Borders</b></input>
<input name="group2" value="50" type="radio"><b>Borders</b></input>
So it would take the values and add it up but then also add the text by its side to a list
Multimedia
No Borders
Equipped
Borders
= 3050
Thank you to who ever takes the time to read this and help me.
Please explain what is being done in the script so that i can understand how it all works.
I have tried to find examples out there that i could learn from but i can't find anything that does something like this and i do not learn well from tutorials