Thursday 11 February 2016

Read and Display XML

Code:

a.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>

index.php

<!DOCTYPE html>
<html>
<body>
<center>
<h1>Read and Display XML</h1>
<?php
    $xml=simplexml_load_file('a.xml');
    print_r($xml);
?>
</center>
</body>
</html>


Output:

 

No comments:

Post a Comment