Hi, in a PHP script, I need to be able to access the content of this XML file:
<?xml version="1.0" encoding="iso-8859-1" ?>
<lastupdate>
10/13/10
</lastupdate>
How do I do it?
<?php
$lastupdate=$simplexml_load_file("content/lastupdate.xml");
// what do I do after loading the XML file?
?>
<?xml version="1.0" encoding="iso-8859-1" ?>
<lastupdate>
10/13/10
</lastupdate>
How do I do it?
<?php
$lastupdate=$simplexml_load_file("content/lastupdate.xml");
// what do I do after loading the XML file?
?>