I was looking at the PHP DOM documentation here "http://www.php.net/ manual/en/ref.dom.php" (which is rather sparse in the way of examples) and can't even get to square one.

Here's an example from the php site:

<?php
$doc = DOMDocument::loadXML('<root><node/></root>');
echo $doc->saveXML();

$doc = new DOMDocument();
$doc->loadXML('<root><node/></root>');
echo $doc->saveXML();
?>

Problem is, it chokes on the first line with the error:
Fatal error: Undefined class name 'domdocument' in /folder/ dom_test.php on line 1

Anyone know how to use this thing?

Thanks

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to