NOTE.XML***************************************************************************<?xml version='1.0' encoding='UTF-8'?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>*********************************************************************XMLGetNodeValue.php****************************************************************************<?php
$xml=simplexml_load_file("note.xml") or die("Error: Cannot create object");
echo $xml->to . "<br>";
echo $xml->from . "<br>";
echo $xml->heading . "<br>";
echo $xml->body;
?>****************************************************************************OUTPUT****************************************************************************ToveJaniReminderDon't forget me this weekend!*****************************************************************************
No comments:
Post a Comment