0

我需要通过电子邮件将输入表格中的所有信息加上总价格发送出去。我知道如何使用 php 发送表单,但总数不是表单字段。有任何想法吗?这是链接:http ://www.redfivedesigns.com/mapp/estimate.html

谢谢,

汤米

4

1 回答 1

1

欢迎来到SO。如果您展示解决问题的方法,您的问题将得到最好的接受。

您的答案在http://www.redfivedesigns.com/mapp/js/formcalculations.js中,您需要根据提交的表单变量复制该逻辑来计算总价。如果您将总数作为隐藏输入,那么您很容易受到像我这样浏览这些网页然后手动降低价格并获得折扣的人的攻击。

但是,如果您不在乎,只需将底部的http://www.redfivedesigns.com/mapp/js/formcalculations.js从

divobj.innerHTML = "Total Price For the estimate $"+estimatePrice;

divobj.innerHTML = "Total Price For the estimate $"+estimatePrice+"<input type='hidden' name='totalprice' value='"+estimatePrice+"'></input>";
于 2012-05-24T22:36:37.500 回答