DOMDocument->createElementNS
Create new element node with an associated namespace
DescriptionobjectDomDocument->createElementNSstringnamespaceURIstringqualifiedName
This function returns a new instance of class
DOMElement. The tag name and prefix of the element
is determined by the value of the passed parameter qualifiedName.
The URI of the namespace is the value of the passed parameter
namespaceURI. This node will not show up in the
document unless it is inserted with e.g.
DOMNode->appendChild().
The return value is &false; if an error occurred.
See also DOMNode->appendChild(),
DOMDocument->createAttributeNS(),
DOMDocument->createElement(),
DOMDocument->createAttribute() and
DOMDocument->createComment().