This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

PHP SimpleXML - Get

Get Node Values

To: Tove
From: Jani
Subject: Reminder
Message: Don't forget me this weekend!

<?php
// contents of external file (note.xml)
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

// load external file, extract and display the data
$xml=simplexml_load_file("include/note.xml") or die("Error: Cannot create object");
echo "To: ".$xml->to . "<br>";
echo "From: ".$xml->from . "<br>";
echo "Subject: ".$xml->heading . "<br>";
echo "Message: ".$xml->body;
?>