It dose not work, no error code , that is weird , please help
<?php
$xmlstring = <<<XML
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
</note>
XML;
$xml = simplexml_load_string($xmlstring);
foreach($xml->note as $note)
{
echo "<p>Item Name: ".$note->heading."</p>";
echo "<p>Item Price: ".$note->from."</p>";
}
?>