RE: Referring to variables

2000-08-24 Thread Olive, Christopher M Mr NMR
VARIABLES is a scope, similar to FORM and URL. it refers to variable created within the page. Chris Olive, DOEHRS Website Administrator -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 24, 2000 9:27 AM To: [EMAIL PROTECTED] Subject: Referring to v

Re: Referring to variables

2000-08-24 Thread Peter Theobald
They are being very specific so that there is never any ambiguity over which variable they are talking about if there are more than one with the same name in different scopes (ie variables.production and URL.production). Variables comes first in the search order so it isn't THAT necessary... EX

RE: Referring to variables

2000-08-24 Thread Terri Stocke
Thanks, Chris! You could refer to it without the scope, though, right? Ter Original Message Follows From: "Olive, Christopher M Mr NMR" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> Subject: RE

Re: Referring to variables

2000-08-24 Thread Sharon DiOrio
VARIABLES is the reserved scope for local variables. That is, variables that are set and available only on the currently processed template. Most developers choose not to scope local variables, but either code works. Whenever I inherit code, I have to pick my battles at to what code I "make my

RE: Referring to variables

2000-08-24 Thread Olive, Christopher M Mr NMR
PROTECTED]] Sent: Thursday, August 24, 2000 10:05 AM To: [EMAIL PROTECTED] Subject: RE: Referring to variables Thanks, Chris! You could refer to it without the scope, though, right? Ter Original Message Follows From: "Olive, Christopher M Mr NMR" <[EMAIL PROTECTED]> Repl

Re: Referring to variables

2000-08-24 Thread paul smith
There is also the consideration that VARIABLES-scoped variables do not need to be CFLOCKED... best, paul At 09:50 AM 8/24/00 -0400, you wrote: >They are being very specific so that there is never any ambiguity over >which variable they are talking about if there are more than one with the >sa