Posts: 13
Threads: 4
Joined: Jan 2012
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
Posts: 109
Threads: 7
Joined: Nov 2012
(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
Posts: 13
Threads: 4
Joined: Jan 2012
2017-06-14, 03:33:39
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
Posts: 109
Threads: 7
Joined: Nov 2012
(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
Posts: 1,127
Threads: 136
Joined: Feb 2012
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-qua...rder-form/
and another to email you the result like:
https://www.briskforms.com/
Maybe even for free.