需要一点帮助来做收音机选择。在 PHP 中,我设置了一个包含 4 个选项的表单。
<form name='type'action=<?php echo $PHP_SELF;?>">
Select one of the following:<br>
<input type='radio' value= '*' name='all'> All Memebers this season<br>
<input type='radio' value= 'L' name='league'> All Members of a League<br>
<input type='radio' value= 'T' name='team'> All Members of a Team<br>
<input type='radio' value= 'I' name='individual'> Individual player<br>
<input type='submit' value='submit' name='submit'><br />
我的想法是根据选择执行不同的查询。
因此,如果选择了所有成员,select * from table
则运行查询。
如果选择了联赛,我会得到一个下拉 dpwn 列表select * from league
如果选择了团队,我会从团队列表中获得一个下拉列表
如果选择了成员,我将获得所有成员的下拉列表。
then when one of the drop downs is selected Or if all is selected, it would take info and send out emails.
我可以处理查询,只是不确定是否必须发送到不同的页面,以及如何处理包含多个条目的 if 语句。