Quote:
Originally Posted by MTGDarkness
That worked! OMG Thanks! 
One question though-what's $this?
|
$this is a variable that only exists in a class/object. It refers to the current object (i.e. the object where you are running the code). In your case, using $this->post and $post would not make a difference, they are the same (assigned by reference):
PHP Code:
$this->post =& $post;