Code source PHP
Redirection vers une autre page
Retour à la page précédente pour choisir une fiche PHP
<?
function redir($url){
echo "<script language=\"javascript\">";
echo "window.location='$url';";
echo "</script>";
}
redir("lapage.php");
?>