Here's a simplier version...and I'm still having a problem with it. It's driving me insane!!! :)
class MySQL
{
function SET ( )
{
$this->MYVAR = "Hello World!";
}
function RETREIVE ( )
{
print $this->MYVAR;
}
}
$helpme = new MySQL;
$helpme->SET;
$helpme->RETREIVE; /* Prints NOTHING */
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

