-1
function requiredOk() {
    if (isset($_POST ["NextQuestion"]) && isset($_POST["Question"])) {
        if (!empty($_POST ["NextQuestion"])) {
            return TRUE;
        } else {
            return FALSE;
        }
    } else {
        return FALSE;
    }
}

if (requiredOk()) { // All fields are filled
    if ($_POST ["NextQuestion"] == "Nieuw") {

        setcookie("cookie", $files);
        foreach ($_COOKIE["cookie"] as $vraag) {
             $files = array();
        $files[] = $_POST("Question");
            //$files[] = $vraag;
            //print_r($files);
            print_r("cookie");

        }
    }
}

如您所见,我想将我的帖子变量存储到一个数组中,我可以在提交后使用它。所以当我第一次提交时,我也看到了 1 个 post 变量,当我第二次提交时,我想在一个数组中看到 2 个 post 变量,依此类推。

4

1 回答 1

0

我建议使用 PHP 会话:http
: //www.php.net/manual/en/intro.session.php 或者将您想要传递的数组存储在使用 json_encode 和 json_decode 的隐藏文本字段中

于 2013-10-29T01:09:27.483 回答