HTML Tutorial


 /help/HTML Help Forum   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
Defining a variable once per visit?
Post new topic   Reply to topic    HTML Help Forum -> Javascript
View previous topic :: View next topic  
Author Message
PaulGrimshaw



Joined: 06 Mar 2006
Posts: 6

PostPosted: Wed Mar 08, 2006 12:44 pm     Defining a variable once per visit? Reply with quote

Hi,

I need to define a variable once per visit to my site and then later on I will be changing it in another script (for tracking positions of menus).

I can not use frames etc so each time the page changes, the variable gets wiped again (as I am resetting it by defining it everytime).

Is there some way of adding a check to see if a variable exists, if so, do nothing. If it doesnt exist, then define it?

Thanks,
Paul.
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8748
Location: Castle Pines North, CO USA

PostPosted: Wed Mar 08, 2006 1:13 pm     Reply with quote

Moved to other languages

Thanks!

-Corey
chrisxkelley



Joined: 07 Dec 2004
Posts: 246

PostPosted: Fri Mar 10, 2006 6:44 pm     Reply with quote

what language?

in php I would use a session variable, something like this:

Code:

<?

$track = $_SESSION['track'];

if (!$track){
 
  $_SESSION['track'] = "Some value";

} else {

  print 'The variable has already been set!';

}

?>


that will chack to see if the session variable exists, and if not, it will set the session variable $track to "Some Value". and if it already exists, it will just print an already been set message.
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum -> Javascript All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial