PHP/MySQL,HTML,JavaScript,Java Programming examples. Free Software, Earn Money Online.
Reading XML file in PHP
XML is Extensible Markup Language used to Exchange Data.
Here is an example of reading XML file in PHP.
ReadXML.php
<?php
echo "Reading XML File<br/>";
$content=simplexml_load_file("msg.xml");
foreach($content as $key=>$value)
echo "<h4>$key : $value</h4>";
?>
msg.xml
<?xml version="1.0"?>
<message>
<To>Visitors</To>
<From>http://kbkashid.blogspot.com</From>
<Subject>Thanks for Visiting!</Subject>
<Body>Hi! My Blog is entirely dedicated for guys interested in innovative programming and to have fun with it!</Body>
</message>
Subscribe to:
Post Comments (Atom)
Strings Code Examples
ReplyDelete