From: <[EMAIL PROTECTED]> > class clsfTreeNode > { > > //member variables > var $fName; > var $fData; > var $includedFiles; > > //constructor > function clsfTreeNode( $fileName ) > { > $this->$fName = $fileName; > $this->$fData = file_get_contents($this->$fName); > > $this->ParseFile();
You have an extra $ sign in your variables names. $this->fName instead of $this->$fName Not sure if that'll solve all your problems, but it's a start. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php