How to pass multiple variables across multiple pages?

前端 未结 7 596
长发绾君心
长发绾君心 2020-11-30 13:37

My website involves a user submitting data over several pages of forms. I can pass data submitted on one page straight to the next page, but how do I go about sending it to

相关标签:
7条回答
  • 2020-11-30 14:11

    This is my workaround of this problem: instead of manually typing in hidden input fields, I just go foreach over $_POST:

    foreach ($_POST as $key => $value) {
        echo '<input type="hidden" name="' . $key . '" value="' . $value . '" />';
    }
    

    Hope this helps those with lots of fields in $_POST :)

    0 讨论(0)
提交回复
热议问题