Session in Iframe working in Firefox but not in Internet Explorer

Posted by Younes on Stack Overflow See other posts from Stack Overflow or by Younes
Published on 2010-03-17T14:55:51Z Indexed on 2010/03/17 15:11 UTC
Read the original article Hit count: 297

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();

© Stack Overflow or respective owner

Related posts about php

Related posts about iframe