Session lost after page redirect in php

前端 未结 7 1363
你的背包
你的背包 2020-11-30 13:52

When I use php header redirection all session variables are lost... Some people say that adding exit(); just after the header(\"\"); will solve the problem but it doesn\'t s

7条回答
  •  既然无缘
    2020-11-30 14:35

    exit; should be placed after header redirection or session_regenerate_id(true); can be used

提交回复
热议问题