Re: [PHP-DEV] domxml changes

2002-05-30 Thread brad lafountain
Forgot to attach the diff for people who are interested. - brad --- brad lafountain <[EMAIL PROTECTED]> wrote: > I was talking before about making changes to domxml. The changes involved > allowing users to create nodes without having a domdocument. > > $node = new DomElement("myNewElement");

[PHP-DEV] domxml changes

2002-05-30 Thread brad lafountain
I was talking before about making changes to domxml. The changes involved allowing users to create nodes without having a domdocument. $node = new DomElement("myNewElement"); $node->set_content("stuff"); echo $node->dump_node(); it also allows you to create a document in the same way $node = ne