Code: Select all
CreateXML(0, #PB_Ascii)
html=CreateXMLNode(RootXMLNode(0))
SetXMLNodeName(html, "html")
head=CreateXMLNode(html, 0, #PB_XML_Instruction)
SetXMLNodeName(head, "head")
title=CreateXMLNode(head)
Instruction-nodes cannot have children obviusly, too.IDE wrote:A commant/CData/DTD node cannot have children.