<?phpclass Textarea07 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : TextArea with PHP code editor"; // Read PHP code of the current file $code_file = new File(__FILE__); $code = $code_file->read(); $code_file->close(); // Create TextArea $this->render = new TextArea($this); $this->render->setValue($code); $this->render->setWidth(550)->setHeight(300); $this->render->activateSourceCodeEdit("php"); }}?>