Jump to content

matuss

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

matuss's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. cookies in IE and firefox are enabled for sure...
  2. really strange thing is, that this problem is only in firefox... if i try to echo something within case, it is not diplayed. only operations with SESSION are executed in case!! also i tried to use if ($int_val == 1) { echo "i am here"; $_SESSION['test'] = ""; } my $_SESSION['test'] variable was erased, even if $int_val was 2...but "I am here" dont appear.. if i use if ($int_val == 1) { echo "i am here"; //$_SESSION['test'] = ""; } everything is ok, no erase of my variable occurs. i dont know what to do, its bad only in firefox
  3. hi, i have this php code: switch($int_value) { case 1: $_SESSION['test'] = ""; break; case 2: some code in case 2; break; case 3: some code in case 3; break; } the problem is, that $_SESSION['test'] is set to "" anytime, also when $int_value is 2 or 3... in case that $int_value is 2, code for 2 is executed. but problem is, that also code for case 1 is executed, this problem is with $_SESSION variables... strange is, that this problem is only in Mozilla Firefox!! in IE and opera it works normaly and OK... i asked on some forum, they told i can try to contact PHP server admin... many thanks
×
×
  • 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.