Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QUESTION Calculation form
#1
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
Reply
#2
(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
Reply
#3
Question 
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
Reply
#4
(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
Reply
#5
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.
Reply




Users browsing this thread: 1 Guest(s)