<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- AffHorMag.php -->
<?php
if (isset($_GET["id"]) AND $_GET["id"]!="")
    
$id $_GET["id"];
else
    exit(
"id not declared<br><a href='page_hormag.php'>retour</a>");
    
include(
"header.php");


// Crée le 04-10-2013 par Bertrand Perrier
// 04-11-2013 ajout des adresses

/*****************************/
/* déclaration des variables */
/*****************************/

include 'hormag/VarHorMag.php';

$NomJour = array("Lundi","Mardi","Mercredi","Jeudi","Vendredi","Samedi","Dimanche");

// except id out of range
if($id>sizeof($HORAIRES)-1)
    exit(
"id out of range<br><a href='page_hormag.php'>retour</a>");

if (isset(
$_GET["id"]))
Print (
"<title>Horaires de ".$HORAIRES[$id][28]."</title>");
else
print(
"<title>Bertrand&gt;Horaires du magasin</title>");

?>
    <meta name="Description" content="Page des horaires des magasins de Bertrand Perrier">

</head>
<body>
<?php

/**************************/
/* affichage des horaires */
/**************************/

include("aff_icone.php");

if (
$m==1)
    {
    echo(
"<h1>Horaires du magasin<br>version mobile</h1>");
    }
    
Print (
"<h1>".$HORAIRES[$id][28]."</h1>");
Print (
"<p class='corps'>");
if (
$HORAIRES[$id][29] != "")
    Print (
"<u>Adresse</u><br>".$HORAIRES[$id][29]."<br><br>");
Print (
"<u>Horaires</u><br>");
AffHor($HORAIRES[$id]);
Print (
"</p>");
Print(
"</font>");


/**************************/
/* fct affichage horaires */
/**************************/
function AffHor($MAG)
    {
    global 
$NomJour;
    for (
$i 0$i <= 6$i++)
        {
        Print (
$NomJour[$i]);
    
        if (
$MAG[$i*4]==-&& $MAG[$i*4+2]==-1) Print (" Ferm&eacute;(e)");
            else
            {
            if (
$MAG[$i*4]!=-1) Print (" de ".DeciToMinute($MAG[$i*4]));
            if (
$MAG[$i*4]!=-&& $MAG[$i*4+1]!=$MAG[$i*4+2]) Print (" &agrave; ".DeciToMinute($MAG[$i*4+1]));
            if (
$MAG[$i*4+2]!=-&& $MAG[$i*4+1]!=$MAG[$i*4+2]) Print (" et de ".DeciToMinute($MAG[$i*4+2]));
            if (
$MAG[$i*4+2]!=-1) Print (" &agrave; ".DeciToMinute($MAG[$i*4+3])."");
            }
        Print (
"<br>");
        }
    Print (
"<br>");
    }



?>
<p class='corps'>
Code source de la <a target=_blank href="hormag/show_source_AffHorMag.php">page</a> - license GPL<br>
<a href="page_hormag.php">retour</a>
</p>

<?php
include("copyright.txt");
if (
$m==1)
    {
    echo 
'</div>';
    }
?>


</body>
</html>