Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
private
/
espace_adherent
/
[
Home
]
File: seances_impression.php
<?php include("../../inc/enligne_param.inc.php"); include("../../inc/gere_session.inc.php"); include("../../inc/salutations.inc.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>ccpsa, club ciné photo son de la ville d'antony</title> <link href="../../css/common.css" rel="stylesheet" type="text/css" /> <!--GOOGLE FONTS--> <!--<link href="../css/common.css" rel="stylesheet" type="text/css">--> <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Droid+Sans' rel='stylesheet' type='text/css'> <link href="https://fonts.googleapis.com/css?family=Kreon:700" rel="stylesheet"> <link href='http://fonts.googleapis.com/css?family=Martel:800' rel='stylesheet' type='text/css' /> <!--FIN GOOGLE FONTS--> </head> <body> <div id="page"> <div id="container"> <h2>SÉANCES IMPRESSION</h2> <h5>Session ouverte pour : <?php echo ucfirst($LePrenom).' '.strtoupper($LeNom); ?>.</h5> <hr /> <div id="col_nav"> <?php include("../../inc/menu.inc.php");?> </div> <div id="col_ABC"> <?php //Création de tableau des jours et des mois pour affichage de la date en français $joursem = array('Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'); $moisannee = array('janvier', 'fevrier', 'mars', 'avril', 'mai', 'juin', 'juillet', 'aout', 'septembre', 'octobre', 'novembre', 'décembre'); //On récupère la liste des animateurs potentiels $query = "SELECT * FROM adherent WHERE animateur_seance_impr='1' ORDER BY prenom"; $resultAnimateurs = mysql_query($query) or die("Erreur dans l'extraction de la liste des animateurs<br>"); $nbP = mysql_num_rows($resultAnimateurs); if ($nbP==0) { echo "<p>Aucun animateur de séances.</p>"; } else { while ($rowAnimateurs = mysql_fetch_array($resultAnimateurs)) { $IdAnimateur = $rowAnimateurs["id"]; $PrenomAnmiateur = $rowAnimateurs["prenom"]; $NomAnmiateur = $rowAnimateurs["nom"]; //Pour chaque animateur, on récupère la liste des séances $query = "SELECT * FROM seances_impr WHERE seances_impr.id_animateur=$IdAnimateur ORDER BY date"; $resultSeances = mysql_query($query) or die("Erreur dans l'extraction de la liste des séances<br />"); $nbSeances = mysql_num_rows($resultSeances); if($nbSeances>0) { echo "<h3>Animateur ".ucfirst($PrenomAnmiateur)." ".strtoupper($NomAnmiateur)."</h3>"; } while ($rowSeances = mysql_fetch_array($resultSeances)){ $IdSeance = $rowSeances["id_seance_impr"]; $Date = $rowSeances["date"]; $Horaires = $rowSeances["horaires"]; $Commentaire = $rowSeances["commentaire"]; $strJourSem = $joursem[date("w",strtotime($Date))]; $strMois = $moisannee[date("n",strtotime($Date)) - 1]; echo "<h4>".$strJourSem." ".date("d",strtotime($Date))." ".$strMois." :</h4>"; echo "<p><strong> - Horaires : $Horaires</strong> / Commentaire : $Commentaire</p>"; echo "<p> - Inscrits : "; //Pour chaque séance, on récupère la liste des participants $query = "SELECT * FROM participants_impr, adherent WHERE participants_impr.id_adherent=adherent.id AND id_seance_impr='$IdSeance'"; $resultParticipants = mysql_query($query) or die("Erreur dans l'extraction de la liste des participants<br>"); $first = 0; if (mysql_num_rows($resultParticipants) > 0) { while ($rowParticipants = mysql_fetch_array($resultParticipants)){ $PrenomParticipant = $rowParticipants["prenom"]; $NomParticipant = $rowParticipants["nom"]; if ($first == 0) $first = 1; else echo ", "; echo ucfirst($PrenomParticipant)." ".strtoupper($NomParticipant); } } else { echo "Aucun"; } echo "</p><hr />"; } if($nbSeances>0) echo "</p>"; } } ?> </div> <!--fin col ABC--> <hr /> <!--MENU BAS--> <p> |<a href="../../index.php" class="zlink"> accueil </a> |<a href="../../pages/activites.php" class="zlink"> activités </a> |<a href="../../pages/galeries.php" class="zlink"> galeries </a> |<a href="../../pages/liens_utiles" class="zlink"> liens utiles </a> |<a href="../../pages/legal.php" class="zlink"> bureau et légalité </a> |<a href="../admin/index.php" class="zlink"> espace adhérents </a>| </p> <!--FIN MENU BAS--> </div> <!--fin container--> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team