Prevent Form resubmission upon hitting back button

前端 未结 8 2043
无人及你
无人及你 2020-12-03 05:17

I have searched many posts here and elsewhere but can\'t seem to find a solution to my problem. I have a page which displays database entries: database.php. These entries c

8条回答
  •  醉酒成梦
    2020-12-03 05:41

    I know this question is old, but having this issue myself, two lines I've discovered that works are:

    header("Cache-Control: no cache");
    session_cache_limiter("private_no_expire");
    

提交回复
热议问题