Posted by Ken Tozier on 09/19/05 10:31
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
Navigation:
[Reply to this message]
|