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 )
<?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