开发者

Session in Iframe working in Firefox but not in Internet Explorer

开发者 https://www.devze.com 2022-12-23 11:08 出处:网络
Im trying to get a form working in Internet Explorer. I see that when i submit this form in Firefox I can start a session and send my webbrowser to the right page based on that Session. In Internet Ex

Im trying to get a form working in Internet Explorer. I see that when i submit this form in Firefox I can start a session and send my webbrowser to the right page based on that Session. In Internet Explorer however when i'm debugging the $_SESSION i retrieve an empty array back, this means that in Internet Explorer the session isn't started on my 开发者_如何学Csecond page.

This is the code i'm using to print the session on my second page:

session_start();
 //unset($_SESSION['bp_email']);
 include("includes/_dbconnect.php");
 print_r($_SESSION);
 die();


Please read this link, it will definitely help you.

0

精彩评论

暂无评论...
验证码 换一张
取 消