Tuesday, April 27, 2010

Read xml file using php

Read xml file using php
test.xml
———
Code:
<?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 file
————–
Code:
<?php
$xml = simplexml_load_file(”test.xml”); echo $xml->getName() . “<br />”;
foreach($xml->children() as $child)
{
echo $child->getName() . “: ” . $child . “<br />”;
}
?>

1 comment:

  1. This blog will be really useful for the php developers and beginers

    ReplyDelete

 

Followers