Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Computer Forums > Programmers Lounge > Programming Discussions » PHP session variables problem
Closed Thread
Old 05-21-2004, 01:03 PM   #1 (permalink)
 
Newb Techie

Join Date: Apr 2004

Posts: 15

wagnj1

Default PHP session variables problem

Hello! I'm trying to get session variables working with my PHP v4.3.6. I know its pretty much built in with that version, but for some reason I'm having problems (its probably my ineptitude). I'm trying to get a simple counter working, here's what my code looks like:

<?php
if (!session_is_registered('count')) {
session_register('count');
$count = 1;
} else {
$count++;
}
?>




Hello visitor, you have seen this page <?php echo $count; ?> times.
</p>




To continue, <a href="nextpage.php?<?php echo strip_tags(SID); ?>">click
here</a>.
</p>

For some reason, my count variable is always unregistered after I refresh or go back to the page later.
It appends the SID to the end of the link thats shown when you move the mouse over the 'next page' link, and this SID is always changing, shouldn't it be the same for the same user??
wagnj1 is offline  
Old 05-21-2004, 01:17 PM   #2 (permalink)
 
Newb Techie

Join Date: Apr 2004

Posts: 15

wagnj1

Default

And its not the fact that I'm missing the session_start(); in the above code.
wagnj1 is offline  
Old 06-10-2004, 03:21 PM   #3 (permalink)
 
Newb Techie

Join Date: Jun 2004

Posts: 23

prezz0

Default

try adding:
session['count'] = $count;
and use that to determine wether the page has been viewed before, personllay i think "If they wanna save info, they can have it on their own PC" so im not much of a session man, gl
prezz0 is offline  
Old 06-10-2004, 03:24 PM   #4 (permalink)
 
Newb Techie

Join Date: Jun 2004

Posts: 23

prezz0

Default

$_SESSION['count'] = $count;
rather
prezz0 is offline  
 
Closed Thread

Thread Tools
Display Modes

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On