PHP在循环内进行表单细分后检索先前的值

时间:2018-10-25 19:30:07

标签: php cookies input

循环 HTML中进行表单细分之后,如何检索选择的值?我设法通过手动if语句解决了问题,但是那不是动态的。 我还将先前提交的值存储在cookie中。 我使用自我页面表单提交。

我设法从单选按钮检索了以前的值:

  <input type="radio" name="spol" value="moški" checked="checked" <?php if (isset($_POST['spol']) && $_POST['spol'] == 'moški') {
            echo ' checked="checked"';
        } ?>>

但是找不到在foreach循环中执行此操作的方法

<!---Cookie "keks" is storing previous submited string-->
     <select name="status">
                <?php
                $_COOKIE['keks'];
                $statusi = ["Dijak", "Študent", "Zaposlen", "Brezposelni"];
                $counter= 0;
                foreach ($statusi as $status) {
                    $counter++;
                     if ($counter == 2) {
                       echo "<option  value=" . $status . " selected>" . $status . "</option>";
                    } else {
                        echo "<option value=" . $status . ">" . $status . "</option>";
                    }
                }
                ?>
            </select>

1 个答案:

答案 0 :(得分:2)

如html注释中所述,$_COOKIE['keks'];正在存储最后一个值。

您可能希望将该值存储到变量中或照原样使用。然后,将其与循环的当前迭代进行比较。

$lastValue = $_COOKIE['keks'];
// some code
foreach ($statusi as $status)
{
    if ($status == $lastValue)
        // mark the option as selected
    else
        // don't mark it
}