On Fri, 22 Oct 2004 09:07:46 +0200, franco bevilacqua <franco.bevilacqua@xxxxxxxxxxxxxxxxx> wrote: > Hello, > I have a question regarding the html_dump_mem function. I build an xml > tree with HTML tags. When I dump it, I expect that my brother interpret > HTML tag procduced by the dump. But the dump produce only a text with my > html tag. Does someone knows how to do HTML interpretation with using > DOMXML print > > The following example explains exactly what whant to do. > (Inspired from html_dump_mem example ) I see nothing wrong with the output, what exactly did you expect? chregu > > <?php > > // Creates the document > $doc = domxml_new_doc("1.0"); > > $root = $doc->create_element("html"); > $root = $doc->append_child($root); > > $body = $doc->create_element("body"); > $body = $root->append_child($head); > > $h1 = $doc->create_element("h1"); > $h1 = $head->append_child($h1); > > $text = $doc->create_text_node("This is the header1"); > $text = $title->append_child($text); > > echo $doc->html_dump_mem(); > > ?> > The following dump is produced: > > <html><body><h1>This is the title</h1></body></html> > > But I expect the following result: > > "This is the title" : formated as HTML header1 > > Thanks for your help. > > Best regards > Franco > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- christian stocker | Bitflux GmbH | schoeneggstrasse 5 | ch-8004 zurich phone +41 1 240 56 70 | mobile +41 76 561 88 60 | fax +41 1 240 56 71 http://www.bitflux.ch | chregu@xxxxxxxxxx | gnupg-keyid 0x5CE1DECB -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php