Re: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-02 Thread ...helmut
thanks for your responses, your comments have lead me to: http://php.mirrors.ilisys.com.au/manual/en/language.variables.scope.php and http://php.mirrors.ilisys.com.au/manual/en/language.variables.variable.php which certainly explain what I was after. Thanks! -- ...helmut helmutgranda.com

[PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread ...helmut
What does $this variable - $this other variable Means? I have seen it and i have used but I am not sure what exactly it means in regular English or Spanish wording that is. TAI -- ...helmut helmutgranda.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread Marek Kilimajer
...helmut wrote: What does $this variable - $this other variable Means? I have seen it and i have used but I am not sure what exactly it means in regular English or Spanish wording that is. read about variable variables -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re[2]: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread Richard Davey
Hello Marek, Wednesday, June 1, 2005, 9:48:36 PM, you wrote: What does $this variable - $this other variable Means? MK read about variable variables Wouldn't that be $$variable? :) It looks like an object method request to me. Best regards, Richard Davey -- http://www.launchcode.co.uk

Re: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread Marek Kilimajer
Richard Davey wrote: Hello Marek, Wednesday, June 1, 2005, 9:48:36 PM, you wrote: What does $this variable - $this other variable Means? MK read about variable variables Wouldn't that be $$variable? :) It looks like an object method request to me. I thought this was covered in that

Re: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread Richard Lynch
On Wed, June 1, 2005 12:43 pm, ...helmut said: $this variable - $this other variable Means? I have seen it and i have used but I am not sure what exactly it means in regular English or Spanish wording that is. In Computer Science it is known as: slot property member variable depending on

Re: [PHP] what is -- $this variable - $this other variable -- means?

2005-06-01 Thread John Nichel
Marek Kilimajer wrote: ...helmut wrote: What does $this variable - $this other variable Means? I have seen it and i have used but I am not sure what exactly it means in regular English or Spanish wording that is. read about variable variables While variable variables are useful, and a