Jump to content

mganesh

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

mganesh's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Here is a peculiar problem that I am encountering This problem is ONLY IN FIREFOX and NOT IN IE (Important !) I have two pages page1.php, page2.php Here are the exerpts from the two files. [b]page1.php :[/b] session_start(); session_register("username_session"); session_register("fullname_session"); $_SESSION["username_session"]=<value from database> $_SESSION["fullname_session"]=<value from database> There is also a form for uploading 5 files (MAX_FILE_SIZE is mentioned as a hidden field with 1000000 as the value) [b]page2.php :[/b] session_start(); echo $_SESSION["username_session"]."<BR>"; echo $_SESSION["fullname_session"]; echo $_SESSION["session_variable_created_in_earlier_page"]; The file info posted from the previous page is available here, and also the session variable created on another previous page, but not the session variables created and assigned in page1.php. The observation: Session variables created on the same page where a file upload form resides, vanish in the next page. This is observed only in firefox and not internet explorer. In IE everything is just fine. Has any one come across this problem ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.