Micro Niche Builder
Closed Thread
Results 1 to 2 of 2

Thread: PHP session variables problem in Firefox

  1. #1

    Default PHP session variables problem in Firefox

    Hi,
    I have developed a small application for my company on PHP but have some small difficulty to overcome. In fact some session variables are getting vanished mysteriously.
    Here is the flow :

    index.php->page1.php->page2.php->page3.php

    Here are the excerpts from the files.

    index.php :

    session_start();
    session_register("username_session");
    session_register("fullname_session");
    $_SESSION["username_session"]=<value from database>
    $_SESSION["fullname_session"]=<value from database>

    page1.php :

    Nothing related to session or session variables in this page. Just pass on a few form fields to next page.
    The form fields are "firstvar" and "secondvar"

    page2.php :

    session_start();
    session_register("firstvar_session");
    session_register("secondvar_session");

    $_SESSION["firstvar_session"]=$_POST["firstvar"]
    $_SESSION["secondvar_session"]=$_POST["secondar"]


    page3.php:

    I access session variables here

    session_start();
    echo "username=".$_SESSION["username_session"]."<BR>";
    echo "fullname=".$_SESSION["fullname_session"]."<BR>";
    echo "firstvar=".$_SESSION["firstvar_session"]."<BR>";
    echo "secondvar=".$_SESSION["secondvar_session"]."<BR>";



    Here is the output :

    username=ganesh
    fullname=M. Ganesh
    firstvar=
    secondvar=
    Thanks & regards,
    Lokananth
    Live Chat Software By miOOt


  2. Micro Niche Builder

  3. #2

    Default

    I dont think there will be a problem in firefox check your php.ini file whether its autostart or not

Closed Thread

Similar Threads

  1. IE Vs Firefox
    By Multima$tery in forum Computers & Internet
    Replies: 49
    Last Post: 12-03-2011, 10:32 AM
  2. Store array in the session
    By nikon in forum PHP Help
    Replies: 5
    Last Post: 10-03-2009, 01:18 AM
  3. Firefox and Sage
    By Kay in forum Computers & Internet
    Replies: 0
    Last Post: 06-02-2009, 09:29 PM
  4. Firefox :: Power Twitter 1.21
    By ankur0412 in forum Twitter
    Replies: 0
    Last Post: 05-03-2009, 11:08 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts