Histoire que l’image d’acceuil change aléatoirement j’ai commencé à modifier le script du thème de Joomla
voici donc le script qui remplace l’affichage de l’image logo.jpg
<?php
$nbimages=5;
$nomimages[1]= »fond1.jpg »;
$nomimages[2]= »fond2.jpg »;
$nomimages[3]= »fond3.jpg »;
$nomimages[4]= »fond4.jpg »;
$nomimages[5]= »fond5.jpg »;
$nomimages[5]= »fond6.jpg »;
srand((double)microtime()*1000000);
$affimage=rand(1,$nbimages);
?>
<img src= »templates/dj_templates/images/<?echo $nomimages[$affimage];?> » width= »780″ height= »220″ border= »0″ /></td>