Is there any way I can change the state of an already instantiated object? ex:
$thisone = new Object(); $content = something; $thisone -> SetContent($content); $thisone -> Display(); That creates the object. Now if I want to change its content: $content = something different; $thisone -> SetContent($content); $thisone -> Display(); This does not work but it illustrates what I want to do. I need to change the content property of the "thisone" object. R/T -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php