Salut ,
Alors pour t'aider je t'ai fait un petit code:
Citation :
<?php
$random = rand(1,3);
// Si $random est égal à 1, on inclu la page PAGE1.php
if($random == 1) {
include("page/PAGE1.php" );
}
// Si $random est égal à 2, on inclu la page PAGE2.php
elseif($random == 2) {
include("page/PAGE2.php" );
}
// Si $random est égal à 3, on inclu la page PAGE3.php
elseif($random == 3) {
include("page/PAGE3.php" );
}
?>
|
Voilà, normalement ça marche
Message édité par nardoum le 24-11-2007 à 14:24:13