i don't know why am I not getting all results what i want from the xml file.
Here's my code:
<?php
$xml=simplexml_load_file("http://2strok.com/gen/maler.xml") or
die("Error: Cannot create object");
foreach($xml->children() as $books) {
echo $books->XResult->Contacts->XContact->Name . "<br>";
echo $books->XResult->Contacts->XContact->Value . "<br>";
echo $books->XResult->Contacts->XContact->VisitationAddress . "
<br>";
}
?>
I'm using php foreach but i'm getting only the first line :(