[PHP] Re: About DOM function in PHP

2007-07-08 Thread M. Sokolewicz
Kelvin Park wrote: I'm getting the following fatal error message: *Fatal error*: Cannot instantiate non-existent class: domdocument in * /home/hosting/infotechnow_com/htdocs/admin/inventory/catalog.php* on line *3 * when running this code: // Initialize new object for DOMDocument $doc = new

Re: [PHP] Re: About DOM function in PHP

2007-07-08 Thread Nathan Nobbe
On 7/8/07, M. Sokolewicz [EMAIL PROTECTED] wrote: You don't have the DOM extension installed (req. PHP5 in case you're not There is no DOM extension it is part of the PHP5 core; this from the DOM documantation http://www.php.net/manual/en/ref.dom.php in the online handbook: *Installation There

Re: [PHP] Re: About DOM function in PHP

2007-07-08 Thread M. Sokolewicz
Actually, I'll have to correct you on that. Everything in PHP is an extension, even the standard functions (which are part of the 'standard' extension). Some extensions are built-in while others are not (ie. standard, in PHP5, the DOM module is built-in). However, this does not mean they are

Re: [PHP] Re: About DOM function in PHP

2007-07-08 Thread Nathan Nobbe
My appologies M. looking through the output of phpinfo() on a PHP5 install i have found a line which says dom DOM/XML enabled which would allude to an ability to disable it. also, i was looking at the XSL extension and discovered Installation PHP 5 includes the XSL extension by default