PHP Coding
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsPHP RelatedPHP Coding

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here!
  #1  
Old July 17th, 2002, 07:30 PM
nemesis nemesis is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Saint-Petersburg, Russia
Posts: 29 nemesis User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Sessions once again

Hello, all!
I'll provide two pieces of code, which (from the functionality point of view) seem identical to me, but one of them (second) is working correctly, while the other is not. This situation is just driving me mad. Could please anyone help me? :angry:
So here's the malfunctioning code:
Code:
  function & start () {
  
    global $_SESSION;
    
    if (!isset($_SESSION['count'])) {
      $_SESSION['count'] = 0;
    }
  
    return $_SESSION['count'];
  
  }

  session_start ();

  $count =& start();
  
  $count++;
  
  echo $_SESSION['count'] . ' -- <a href="test.php">Refresh</a>';

And here is the working one:
Code:
  session_start ();

  if (!isset($_SESSION['count'])) {
    $_SESSION['count'] = 0;
  }
  
  $count =& $_SESSION['count'];
  
  $count++;
  
  echo $_SESSION['count'] . ' -- <a href="test.php">Refresh</a>';


Reply With Quote
  #2  
Old July 17th, 2002, 07:38 PM
Matt Matt is offline
Moderator
Codewalkers Specialist (4000 - 4499 posts)
 
Join Date: Apr 2007
Location: Florida
Posts: 4,158 Matt User rank is Private First Class (20 - 50 Reputation Level)Matt User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 4 h 10 m 20 sec
Reputation Power: 6
RE: mysql?

$_SESSION is an autoglobal, so you don't need the:

global $_SESSION;

take that line out and I think it will work as you expect...

Reply With Quote
  #3  
Old July 17th, 2002, 07:52 PM
nemesis nemesis is offline
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Location: Saint-Petersburg, Russia
Posts: 29 nemesis User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
RE: Sessions once again

Great! It works now. Thanks a lot, Matt. I will never forget it.

Reply With Quote
Reply

Viewing: Codewalkers ForumsPHP RelatedPHP Coding > Sessions once again


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway