<?php class HtmlFragment { var $html; function toStr() { return $this->html; } function display() { echo $this->html; } } ?>