1
           
            
                
     
    
    Just to let you all know, that if you assign a variable by reference; it’s as stated a variable and not a function or class….
The reason being is from research found; it’s a reference point by variable….
So for example:
 $tpl =& $xoopsTpl;  
Will make the data in $xoopsTpl, change when anything in $tpl is changed….
 $tpl =& new Funky($monkey);  
How can it be referenced, if there is no variable associated with the transaction?
 $tpl =& $handler->Funky($monkey);  
This implies to use the $handler as a reference point… If you change $tpl how would it be sent into a function to change a variable, same within classes…..
