GetSimple Support Forum
QUESTION Calculation form - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: Developer Discussions (http://get-simple.info/forums/forumdisplay.php?fid=8)
+--- Thread: QUESTION Calculation form (/showthread.php?tid=9701)



Calculation form - cuirassier - 2017-06-11

Dear friends,
I need to make a small calculation table on my page (to calculate the price of my services).
Can you advice me some example or a plugin?
Thank you very much in advance


RE: Calculation form - Alexander_ - 2017-06-12

(2017-06-11, 04:44:40)cuirassier Wrote: Dear friends,
I need to make a small calculation table on my page (to calculate the price of my services).
Can you advice me some example or a plugin?
Thank you very much in advance

Code:
<form action="..." oninput="total.value = quantity.value * price.value">
<input type="hidden" name="price" value="50">
quantity: <input type="number" name="quantity"><br>
total:<input type="text" name="total" readonly="readonly">
</form>

Alex


RE: Calculation form - cuirassier - 2017-06-14

Thank you very much.
I could make a calculation form though my form is a little complicated.
But it works fine, thank you again.
And one more little question: how can I send this form to my email?

Thank you veru much for your help!

Nick


RE: Calculation form - Alexander_ - 2017-06-14

(2017-06-14, 03:33:39)cuirassier Wrote: And one more little question: how can I send this form to my email?

Thank you veru much for your help!

Nick

Take a look at this: http://form.guide/php-form/php-form-submit.html

Alex


RE: Calculation form - Timbow - 2017-06-16

Cuirassier - I don't know for sure and I couldn't recommend any particular site but if you are not 100% confident with the html and php of forms and data submission I think you can go to an online service which will helpĀ build the form and handle the data. Maybe one to build the form, or an opensource template like:
https://css-tricks.com/multi-product-quantity-based-order-form/
and another to email you the result like:
https://www.briskforms.com/

Maybe even for free.