Re: [PHP-DEV] domxml extension

2002-05-05 Thread brad lafountain
--- Christian Stocker <[EMAIL PROTECTED]> wrote: > Hi > > > Yeah but i don't have a $xml > > > > alls i want to do is > > $node = new DomElement('blah'); > > I'm not sure, why you want this, but it doesn't make much sense to me and > is not in the sense of the DOM-Standard: > > "Objects i

Re: [PHP-DEV] domxml extension

2002-05-05 Thread Christian Stocker
Hi > Yeah but i don't have a $xml > > alls i want to do is > $node = new DomElement('blah'); I'm not sure, why you want this, but it doesn't make much sense to me and is not in the sense of the DOM-Standard: "Objects implementing some interface "X" are created by a "createX()" method on th

Re: [PHP-DEV] domxml extension

2002-05-05 Thread brad lafountain
--- Christian Stocker <[EMAIL PROTECTED]> wrote: > On Sun, 5 May 2002, brad lafountain wrote: > > > Hello, > > > > I was wondering who was maintaing the dom xml extension. > > > > I was just testing out some stuff. > > > > - > > $xml = new DomElement('asdf')

Re: [PHP-DEV] domxml extension

2002-05-05 Thread Christian Stocker
On Sun, 5 May 2002, brad lafountain wrote: > Hello, > > I was wondering who was maintaing the dom xml extension. > > I was just testing out some stuff. > > - > $xml = new DomElement('asdf'); > just doesn't work.. > > $xml = new DomElement('asdf'); > $real_ele

[PHP-DEV] domxml extension

2002-05-05 Thread brad lafountain
Hello, I was wondering who was maintaing the dom xml extension. I was just testing out some stuff. - $xml = new DomElement('asdf'); just doesn't work.. $xml = new DomElement('asdf'); $real_element = $xml->domelement('asdf'); works... I looked into thi