View Single Post
  #5 (permalink)  
Old 09-16-06, 07:32 PM
Barnz1986 Barnz1986 is offline
Aspiring Coder
 
Join Date: Jan 2006
Posts: 506
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by johndapunk
Yeah, I got that part of it. But what I don't get is how the $ipsclass variable has the class object in it without declaring any
PHP Code:

$this->ipsclass = new ipsclass 

Also, the classes with the
PHP Code:

<?php

class classname {
var 
$ipsclass;
...
}
?>
are in different files from the Super Class.
Strange, im sure the $this->ipsclass = new ipsclass must be somewhere in there.

Does the class extend another class? but then you would think the var $ipsclass would be in the super class etc.
Reply With Quote