我想得到一个建议。如何使用计划在PHP中创建页面,例如。计划1架,计划3架和计划6架,客户可以在其中选择一种,然后转到结帐页面?非常感谢:)
答案 0 :(得分:0)
Tadaa
现在,您只需要一种脚本即可处理输入并执行您想做的任何事情。例如PHP。
这是form
,需要一些用户输入/选择并将其发送到服务器。
<form method="POST" action="?">
<label>
<input name="plan" type="radio" value="1" checked="checked"/> Plan 1 mounth
</label>
<br/>
<label>
<input name="plan" type="radio" value="3"/> plan 3 mounths
</label>
<br/>
<label>
<input name="plan" type="radio" value="6"/> plan 6 mounths
</label>
<br/><br/>
<input type="submit" value="go to checkout ">
</form>
编辑: 为输入增加了值