Thanks for the pointer
I don't quite understand this part,
function &returns_reference()
{
return $someref;
}
$newref =& returns_reference();
What i am wanting to do is use the $someref var in the calling script. I don't understand what the $newref =& returns_reference(); bit does and how to use it.
thanks
Jamie