1

我不知道为什么,但是 $_POST['q1'] 上的 var_dump 一直返回 NULL,当我尝试使用 print_r 时它什么也没返回,谁能向我解释为什么?

    <?php
        $fields = array('tester_name','tester_email','reviewer_email','q1','q2',
                'q3','q4','q5','q6','q7','q8','q9','q10');


        $errors = array();
        $x = 0;
            foreach($fields as $key => $field) {
                if (isset($_POST[$field])) {    
                    if (empty($_POST[$field])) {
                        $errors[$x] = $field;
                        ++$x;
                    }
                } else { exit; }
            }
        ?>


<form style="padding-left:25px;" method="POST" action="all.php">

    <p><b>1.</b> How many Zodiac Signs are there?<br />
            <input class="qIn" type="radio" name="q1" value="11" <?php if($_POST['q1']=="11") echo 'checked'; ?> />11<br />
            <input class="qIn" type="radio" name="q1" value="12" <?php if($_POST['q1']=="12") echo 'checked'; ?> />12<br />
            <input class="qIn" type="radio" name="q1" value="13" <?php if($_POST['q1']=="13") echo 'checked'; ?> />13<br />
            <input class="qIn" type="radio" name="q1" value="14" <?php if($_POST['q1']=="14") echo 'checked'; ?> />14<br /></p>

         <input style="margin-left:120px;" type="submit" value="Submit" />
</form>
</body>

4

1 回答 1

1

你没有关闭一个{. 这是您修改后的代码,并注释exit代码行。

<?php
$fields = array('tester_name','tester_email','reviewer_email','q1','q2',
    'q3','q4','q5','q6','q7','q8','q9','q10');


$errors = array();
$x = 0;
foreach($fields as $key => $field) {
    if (isset($_POST[$field])) {
        if (empty($_POST[$field])) {
            $errors[$x] = $field;
            ++$x;
        }
    } else {
    //echo "fails";
    //exit;// }
}
}
?>


<form style="padding-left:25px;" method="POST" action="all.php">

    <p><b>1.</b> How many Zodiac Signs are there?<br />
        <input class="qIn" type="radio" name="q1" value="11" <?php if($_POST['q1']=="11") echo 'checked'; ?> />11<br />
        <input class="qIn" type="radio" name="q1" value="12" <?php if($_POST['q1']=="12") echo 'checked'; ?> />12<br />
        <input class="qIn" type="radio" name="q1" value="13" <?php if($_POST['q1']=="13") echo 'checked'; ?> />13<br />
        <input class="qIn" type="radio" name="q1" value="14" <?php if($_POST['q1']=="14") echo 'checked'; ?> />14<br /></p>

    <input style="margin-left:120px;" type="submit" value="Submit" />
</form>
</body>
于 2013-09-15T05:47:53.137 回答