Gold Vision Communications / USA
 GOLDVISION.COM
Serving the Multimedia Community since 1989.
German Site | Spanish Site 

 Web Hosting

 Virtual Dedicated Servers

 Domaincheck

 Order

 Order Status

 Support

 Contact us

 Download

 Network

 Network Status

 Webdesign / Templates

 Make Payment

 Terms & Conditions

 Imprint

 Legal Notices

 Privacy Statement
  PHP / domxml_add_root
domxml_add_root

domxml_add_root

(PHP 4 >= 4.0.0)

domxml_add_root --  Adds a further root node

Description

resource domxml_add_root ( resource doc, string name)

Warning

This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change in a future release of PHP without notice. Be warned and use this function at your own risk.

Adds a root element node to a dom document and returns the new node. The element name is given in the second parameter.

Example 1. Creating a simple HTML document header

<?php
$doc = new_xmldoc("1.0");
$root = $doc->add_root("HTML");
$head = $root->new_child("HEAD", "");
$head->new_child("TITLE", "Hier der Titel");
echo $doc->dumpmem();
?>


© 1998-2007 Gold Vision Communications All Rights Reserved.