我试图通过php从广播框/按钮获取值。
服务器仅支持PHP。
我在asp.net(C#)中做过代码试图测试发现服务器不支持asp.net。
使用JavaScript创建相同的问卷。现在发现一些外部客户端正在使用浏览器日期回到IE 7.所以需要在php中重新编码
所有单选框都有数值
例如:<label>
<input type="radio" name="experiencebx" value="5" id="experiencebx_0"/>
Brand New</label>
<label>
<input type="radio" name="experiencebx" value="10" id="experiencebx_1"/>
Less than 2 years</label>
<label>
<input type="radio" name="experiencebx" value="15" id="experiencebx_2"/>
2-5 years</label>
<label>
<input type="radio" name="experiencebx" value="20" id="experiencebx_3"/>
5-10 years</label>
<label>
<input type="radio" name="experiencebx" value="30" id="experiencebx_4"/>
10+ years</label>
如何循环并抓取值
底部的总数。
第二个问题是
如何将总数传递到第二页,将小数字添加到最终总数中。
在ASP.net中我可以将这个号码存储在一个会话中。上一个问题:
选择所选单选按钮/框的文本,然后选择单选按钮/框值给我发电子邮件。
我真的,真的需要一些帮助。
答案 0 :(得分:1)
问题一:
使用$ _POST [“experiencebx”]获取所选值。
问题#2:
使用$ _SESSION会话[“var”] =“value”;
问题#3:
使用邮件功能: