1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <?php
/****************************************************
Tableau associatif des bannieres et banniere choisie
*****************************************************/
$tabBannieres = array(
1 => array('http://http://www.waves.com/content.aspx?id=351#voucher&ref=ing','http://i83.servimg.com/u/f83/13/55/89/55/4plugi13.jpg','Description 1'),
2 => array('http://www.waves.com/Content.aspx?id=9112&ref=ing','http://i83.servimg.com/u/f83/13/55/89/55/h-dela13.jpg','Description 2'),
3 => array('http://http://www.waves.com/content.aspx?id=351#voucher&ref=ing','http://i83.servimg.com/u/f83/13/55/89/55/4plugi13.jpg','Description 3')
);
/****************************************************
Détermination de la banniere à afficher
*****************************************************/
$choix = 1;
$choix = array_rand($tabBannieres, 1);
/****************************************************
Affichage des bannieres
*****************************************************/
echo '<a href="', $tabBannieres[$choix][0] ,'" title="', $tabBannieres[$choix][2] ,'">';
echo '<img src="', $tabBannieres[$choix][1] ,'" alt="', $tabBannieres[$choix][2] ,'" />';
echo '</a>';
?> |
Partager