Code: Select all
0001
photo1.jpg
photo2.jpg
photo3.jpg
photo4.jpg
AVENUE RIVIERA
0002
photo1.jpg
photo2.jpg
photo3.jpg
photo4.jpg
AVENUE RIVIERA
0003
photo1.jpg
photo2.jpg
photo3.jpg
photo4.jpg
AVENUE RIVIERA
Code: Select all
$xmlFile = simplexml_load_file($file);
foreach($xmlFile->annonce as $annonce)
{
foreach($annonce->children() as $child)
{
...
echo $child->getName().": ".(string)$child."
";
}
}
Code: Select all
$xmlFile = simplexml_load_file($file);
foreach($xmlFile->annonce as $annonce)
{
foreach($annonce->children() as $child)
{
...
echo $child->getName().": ".(string)$child."
";
foreach ($child->{"liste_photos"} as $liste_photos)
{
foreach ($liste_photos->{"photo"} as $photo)
{
...
echo $photo->getName().": ".(string)$photo."
";
}
}
}
}
Mobile version