Bonjour tout le monde,je cherche comment afficher un seul élément d'un fichier xml avec php à travers son identifiant. voila mon code :
<?php
$id=$_GET['id'];
echo $id;
$nouvelles = simplexml_load_file('web.xml');
echo $nouvelles->$nouvelles->martyr[1]->image;
echo "<br>".$nouvelles->$nouvelles->martyr[1]->nom;
?>
<?php
$id=$_GET['id'];
echo $id;
$nouvelles = simplexml_load_file('web.xml');
echo $nouvelles->$nouvelles->martyr[1]->image;
echo "<br>".$nouvelles->$nouvelles->martyr[1]->nom;
?>