Someone can explain to me why and when we need to reference variables and function.
example:
function &load_class()
{
}
or
$class = &new Class();
I also noticed that some php code vars sometimes appears like this:
$_var instead of $var;
there is any reason for that.