I ran into the same kind of problem. I finally gave up and wrote a PERL CGI script.
Jim Plush wrote: > Is it possible to change webhosts? honestly if your webhost won't even > let you load the domxml extension you're in big trouble if you start > getting into more advanced features. My host lets me build my own custom > php version to use however I want. > > If they have a PHP5 plan you could use SimpleXML like the DOM > > "Bryan Hughes" <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote in > message news:[EMAIL PROTECTED] > I am using hosting from a company that doesn't have DOMXML support > loaded. The say it causes the servers to slow down too much. > > Is there a way to load DOMXML automatically? > > I tried > > if(!extension_loaded("doxml")) { dl("php_domxml.c"); } > > but said "Unable to load dynamic library './php_domxml.c' ... No > such file or directory > > I also tried php_domxml.so. > > Is this not possible? Are there any other solutions for getting xml > support in the confines of webhosting environment.