Get node values


SUBMITTED BY: henry1874w

DATE: June 21, 2017, 11:55 p.m.

FORMAT: Text only

SIZE: 242 Bytes

HITS: 226

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $xml=simplexml_load_file("note.xml") or die("Error: Cannot create object");
  6. echo $xml->to . "<br>";
  7. echo $xml->from . "<br>";
  8. echo $xml->heading . "<br>";
  9. echo $xml->body;
  10. ?>
  11. </body>
  12. </html>

comments powered by Disqus