<?phpclass Table01 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Simple Table"; $this->render = new Table(); $this->render->setBorder(1); $this->render->addRowColumns("row1 col1", "row1 col2"); $this->render->addRowColumns("row2 col1", "row2 col2"); $this->render->addRowColumns("row2 col1", "row3 col2"); }}?>