Hola gente, como les habia anticipado, iba a empezar a molestarlos por dudas estúpidas respecto a php OO. 
Copié textual las sig. líneas de un manual, pero el resultado no es el esperado:
 
<?php
class TextBox {
	var $body_text = "my text";
	function __construct($text_in) {
	    $this-> body_text = $text_in;
	}
	function display() {
	    print("<TABLE BORDER=1><TR><TD>$this-> body_text");
	    print("</TD></TR></TABLE>");
	}
}
$box=new TextBox(" text");
$box ->display();
?>
 
 
resultado en pantalla:
 
Object id #1-> body_text 
 
 
saludos 
  
 
 
