1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <?php
$doc = new DOMDocument('1.0','iso-8859-1');
$doc->load('galerie.xml');
//ICI ON VA AFFICHER LA LISTE DES PHOTOS//
$p = $doc->getElementsByTagName('gallerie');
$p = $p->item(0);
$nodes = $p->getElementsByTagName('desc');
?>
<div id="listeadmin">
<?php
foreach($nodes as $n)
{
$small = $n->getAttribute('small');
$commentaire_actuel = $n->getAttribute('com');
?>
<img src="<?php echo $small;?>" alt="miniature"/><br />
<span style="font-weight:bold;"> commentaire:</span><span><?php echo $commentaire_actuel;?></span><br />
<a href="modifier.php?modifier=<?php echo $n->getAttribute('big');?>">Modifier le commentaire</a><br/>
<a href="?supprimer=<?php echo $n->getAttribute('big');?>">supprimer</a><br/>
<?php
}
?></div> |
Partager