PHP XML help

GEC: Discuss gaming, computers and electronics and venture into the bizarre world of STGODs.

Moderator: Thanas

Post Reply
User avatar
Sonnenburg
Official Dave Barry Clone
Posts: 2305
Joined: 2002-11-05 08:35pm
Location: Gotham City
Contact:

PHP XML help

Post 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.
Chuck

Image
User avatar
Sonnenburg
Official Dave Barry Clone
Posts: 2305
Joined: 2002-11-05 08:35pm
Location: Gotham City
Contact:

Post by Sonnenburg »

Yup, it was wrong version of php. Thanks for the help!
Chuck

Image
Post Reply