Page 1 of 1

PHP XML help

Posted: 2008-06-05 09:41am
by Sonnenburg
I seem to be having problems accessing my xml file using PHP. Supposedly the server has PHP 5, but these simple codes are still generating errors. Am I doing this wrong, or is the server not using PHP 5?

Code: Select all

<?php
  $xml = simplexml_load_file('2PH.xml');
?> 

Fatal error: Call to undefined function: simplexml_load_file() in /usr/local/pem/vhosts/107093/webspace/httpdocs/sonn/alink.php on line 15

Code: Select all

<?php
$xml = new DOMDocument();
$xml->load('2PH.xml');
?>

Fatal error: Call to undefined method: domdocument->load() in /usr/local/pem/vhosts/107093/webspace/httpdocs/sonn/alink.php on line 16
Any help would be greatly appreciated.

Posted: 2008-06-05 10:51am
by Sonnenburg
Yup, it was wrong version of php. Thanks for the help!