Code has been added to clipboard!
Reading XML Files
Example
<?php
$xml = simplexml_load_file("file.xml") or die("Failed to create object");
print_r($xml);
?>
Code has been added to clipboard!
<?php
$xml = simplexml_load_file("file.xml") or die("Failed to create object");
print_r($xml);
?>