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");
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