Howdy folks, I'm using PHP 5.0.5 with the DOM enabled and I'm trying to create an XML doc with PHP. The problem I'm having is attaching a namespace prefix to a tag. What I'm trying to create is something like the following: <?xml version="1.0" encoding="UTF-8" ?> <Notes xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd: CommonAggregateComponents-1.0"> <cac:Note /> </Notes> I am unable to create the "<cac:Note />" element with the "cac:" namespace prefix. Any suggestions would be appreciated!