* html( * $x->head( * $x->title("A simple XHTML page") * ), * $x->body( * $x->div( * $x->h1('Example'), * $x->br(), * $x->a(array('href' => 'http://pear.php.net'), 'PEAR WebSite') * ) * ) * ); * // Write output * $x->toXML(); * ?> *