php-windows Digest 29 Nov 2003 19:51:05 - Issue 2021
Topics (messages 22242 through 22243):
Newbie Error Logging Question
22242 by: Jeff Anderson
Class question
22243 by: Alex
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe fro
Hello ALL!
I tried to make a class in another class something like:
parent->var1;
}
}
class B{
function b(){
$this->var1="Class B";
$this->var2=new A();
}
}
$c=new b();
?>
In this script I use class A inside class B and I want to use
variable from B inside A.
I wanted: Hello fro