0

首先这是我的 PHP 代码

if(!isset($_POST['selection'])){
    $missing['selection'] = $required['selection'];
}

if(empty($missing)) {

    post2session();
    $_SESSION['step'][0] = 0;
    redirect("");

}

这是我的 HTML

<form action="" method="post">
    <table cellpadding="0" cellspacing="0" border="0" class="tbl_insert">

        <tr>
            <th><label for="selection">Select from following that applies to you</label></th>
            <td>
                <input type="radio" name="selection" id="selection" group="form_type" value="form1"> />Form 1<br />
                <input type="radio" name="selection" id="selection" group="form_type" value="form2" />Form 2<br />
                <input type="radio" name="selection" id="selection" group="form_type" value="form3" />Form 3<br />
                <input type="radio" name="selection" id="selection" group="form_type" value="form4" />Form 4<br />
            </td>
        </tr>
</table>
</form>

如果他们选择无线电“form1”,我将如何将用户重定向到 FORM1;FORM2 如果他们选择了“form2”;等等

感谢您提供的帮助 (Y)

4

3 回答 3

1
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    switch($_POST['selection']) {
         case 'form1': $url = '/wherever/form1/is'; break;
         case 'form2': $url = '/wherever/this/other/form/goes'; break;
         ...
         default: $url = '/some/default/handler';
    }
    redirect($url);
}
于 2011-03-11T19:41:03.673 回答
0


先把name属性变成数组name="selection[]"dio

并且不要为每个单选按钮使用相同的 ID,或者您可以一起检查所有单选按钮,因为php可以使用,namejavascript可以使用id

并在帖子页面上尝试通过print_r($_POST['name'])

于 2011-03-11T19:54:33.483 回答
0

重定向到新页面通​​常是这样完成的:

header('Location: www.site.tld/anotherpage.php');
exit();
于 2011-03-11T19:41:04.677 回答