//llegir el menu corresponent (1,2, 3 o 4 de la carpeta menu)
$m=$_REQUEST['m'];
error_reporting(E_ERROR);
if ($m==1) {include('menus/1.php');}
if ($m==2) {include('menus/2.php');}
if ($m==3) {include('menus/3.php');}
?> |
if ($m==4) {include('menus/contacte.php');}
else
{
if (isset($_GET['e']) && $_GET['e'] != "")
{
echo '';
}
else
{
if (isset($_GET['s']) && $_GET['s'] != "")
{
//echo "llegint fitxer ".$_GET['s'].".htm";
include ($_GET['s'].".htm");
}
else
{
if (($m==1) || ($m==2) || ($m==3)){
//echo "llegint fitxer d'entrada al menĂº $m : ".$m.".htm (no existeix encara!) ";
include($m.'.htm');}
}
if (!(isset($_GET['m']) && $_GET['m'] != ""))
{
//echo "Benvingut ";
//echo "Llegint fitxer de benvinguda : 0.htm (encara no existeix)
";
//include ("0.htm");
//include("MonbeausapinPARIS.pdf");
//include("ore/Oreneta.html");
echo '
';
}
}
}
?>
|