Thursday, June 16, 2011

read xml php

I have posted the PHP code to read XML file.


Below is a sample XML file,


<?xml version="1.0" encoding="ISO-8859-1"?>

<note>

<to>Tove</to>

<from>Jani</from>

<heading>Reminder</heading>

<body>Don't forget me this weekend!</body>

</note>


<?php

$xml = simplexml_load_file("test.xml");


echo $xml->getName() . "<br />";


foreach($xml->children() as $child)

{

echo $child->getName() . ": " . $child . "<br />";

}

?>

No comments:

Post a Comment