navigate back with PHP form submission

后端 未结 6 854
旧时难觅i
旧时难觅i 2020-12-03 05:35

So here is the deal, I am using HTML forms to transfer variables from page to page and PHP script to create pages based on values submitted. In general it looks like this:

6条回答
  •  一个人的身影
    2020-12-03 06:22

    I tried this answer and it's ok. You have to put this code before: session_start():

    session_cache_limiter('private, must-revalidate');
    session_cache_expire(60);
    

    Good luck

提交回复
热议问题