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 27 28 29 30 31
|
<html>
<head>
<title>Les Pseudo Frames</title>
</head>
<body>
<!-- Liens de votre menu -->
<a href="index.php?page=livre">Le livre d'or</a> -
<a href="index.php?page=liens">Les liens</a> -
<a href="index.php?page=forum">Le Forum</a>
<?Php
switch($page) { // Fonction switch : séléction de la case en fonction de la variable $page
case'livre': // Lorsque la variable $page = livre | Rappel : <a href="index.php?page=livre">
include("livredor.php"); // On inclut la page livredor.php
break; // On stop le déroulement du script ici (jusqu'à la fin du switch )
case'liens': // Lorsque la variable $page = liens | Rappel : <a href="index.php?page=liens">
include("liens.html"); // On inclut la page liens.html
break; // On stop le déroulement du script ici (jusqu'à la fin du switch )
case'forum': // Lorsque la variable $page = forum | Rappel : <a href="index.php?page=forum">
include("leforum.php"); // On inclut la page leforum.php
break; // On stop le déroulement du script ici (jusqu'à la fin du switch )
}
?>
</body>
</html> |