Session in Iframe working in Firefox but not in Internet Explorer

12,338

Please read this link, it will definitely help you.

Share:
12,338

Related videos on Youtube

Younes
Author by

Younes

C# .NET / Sitecore CMS

Updated on April 16, 2022

Comments

  • Younes
    Younes about 2 years

    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 second 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();
    
  • Younes
    Younes over 14 years
    It did help me if i hadn't found the solution 3 mins before you posted your answer :). Therefore i will accept your answer. Thanks for helping!
  • Pankaj Khurana
    Pankaj Khurana over 13 years
    Thanks gaurav it helped me in resolving the issue.
  • KIRAN K J
    KIRAN K J over 11 years
    i have the same issu.but i am using asp.net