Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
private
/
adherent
/
[
Home
]
File: adherent.php.old
<?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>ANNUAIRE DES MEMBRES DU CCPSA - GESTION</title> <style type="text/css"> <!-- @import url("../../css/form_common.css"); --> </style> <script type="text/javascript" src="../../js/swap_image.js"></script> </head> <body> <div id="page" class="clearfix"> <h2>ADHÉRENTS - GESTION</h2> <a name='ancre1'></a> <h5>Interface Administrateur. Session ouverte pour : <?php echo ucfirst($LePrenom).' '.strtoupper($LeNom) ; ?>.</h5> <div id="left_col"> <?php include("../../inc/menu.inc.php");?> <p> </p> <!-- Code Tri des membres : DEBUT --> <?php if(isset($_POST['sorting'])) { $sorting = $_POST['sorting']; } else{ //Valeur par défaut $sorting = "ByName"; } ?> <form action="#" method="post"> <p> </p> <p> <center> Classer les membres par : <br> <select name="sorting" id="sorting" onchange="submit()"> <option value="ByName" <?php if ($sorting == "ByName") { echo "selected";}?> >Nom</option> <option value="BySeniority" <?php if ($sorting == "BySeniority") { echo "selected";}?> >Ancienneté</option> <option value="BySeniorityReverse" <?php if ($sorting == "BySeniorityReverse") { echo "selected";}?> >Nouveauté</option> <option value="ByMail" <?php if ($sorting == "ByMail") { echo "selected";}?> >Mail</option> <option value="ByPostalCode" <?php if ($sorting == "ByPostalCode") { echo "selected";}?> >Code Postal</option> <option value="ByCcpsa" <?php if ($sorting == "ByCcpsa") { echo "selected";}?> >N° CCPSA</option> <option value="ByFpf" <?php if ($sorting == "ByFpf") { echo "selected";}?> >N° FPF</option> </select> <center> </p> </form> <!-- Code Tri des membres : FIN --> </div> <div id="container"> <div id="main_col"> <?php // Création et envoi de la requete // Code Tri des membres : DEBUT // Création et envoi de la requetei if ($sorting == "ByName") { $query = "SELECT * FROM adherent ORDER BY actif DESC, nom ASC"; } elseif ($sorting == "BySeniority") { $query = "SELECT * FROM adherent ORDER BY arrive ASC"; } elseif ($sorting == "BySeniorityReverse") { $query = "SELECT * FROM adherent ORDER BY idccpsa DESC"; } elseif ($sorting == "ByMail") { $query = "SELECT * FROM adherent ORDER BY mail"; } elseif ($sorting == "ByPostalCode") { $query = "SELECT * FROM adherent ORDER BY cp"; } elseif ($sorting == "ByCcpsa") { $query = "SELECT * FROM adherent ORDER BY idccpsa ASC"; } elseif ($sorting == "ByFpf") { $query = "SELECT * FROM adherent ORDER BY idfpf ASC"; } // Code Tri des membres : FIN $result = mysql_query($query) or die("Erreur dans l'extraction des informations<br>"); $nbP = mysql_num_rows($result); // Récuperation des résultats if ($nbP==0) { echo "Hum ! c'est ennuyeux, il semble que nous n'ayons pas de donnees a afficher. Ou qu'il y ait une erreur dans leur extraction.";} else { while ($row = mysql_fetch_array($result)){ $Fpf = $row['idfpf']; $Ccpsa = $row['idccpsa']; $Arrive = $row['arrive']; $Actif = $row['actif']; $Civ = ucfirst($row['civ']); $Nom = strtoupper($row['nom']); $Prenom = ucfirst($row['prenom']); $Adresse1 = $row["num"].', '.$row["voie"]; $Adresse2 = $row["cp"].' - '.ucfirst($row["commune"]); $Tel = $row['tel1']; $Mobile = $row['tel2']; $Lien = $row["mail"]; $Mail = '<span class="legende">'.$Lien.'</span>'; $Photo = $row["photo"]; $Fonction = '<span class="gras color_t">'.$row["cat"].'</span>'; $Definition = '<span class="gras">'.$row['definition'].'</span>'; $Activite = $row["activite"]; $Identifiant = $row["login"]; $Pass = $row["pass"]; $Droit = $row["droit"]; $Rang = $row["rang"]; $Apn = $row["apn"]; $Style = $row["style"]; // Liens de modification $Modifier = '<a class="vlink" href = "adherent_modif.php?chgt='.$row['id'].'">Modifier</a>'; $Supprimer = '<a class="rlink" href = "adherent_supp.php?chgt='.$row['id'].'">Supprimer</a>'; //Affichage echo "<div id='vignette_adh'> <a name='$Nom'></a> <p> </p> <p class='float'><img src='../trombin/$Prenom $Nom.jpg 'height='120px'/><p> <h4><b>$Prenom $Nom</b></h4><br /><b>$Fonction $Definition</b><br />$Activite</p> <p> N° CCPSA : <b>$Ccpsa</b> / N° FPF : <b>$Fpf</b></p> <p><b>Adhérent : <span class='red'>$Actif</span></b> / Inscrit(e) en : $Arrive</p> <p>Adresse : $Adresse1 - $Adresse2"; $Mobile_split = str_replace("\r\n", " ", chunk_split($Mobile, 2)); $Tel_split = str_replace("\r\n", " ", chunk_split($Tel, 2)); echo" <p>Tél. $Tel_split - Port. $Mobile_split</p> <p><strong>Mail : <a href=\"mailto:$Lien\" class='zlink'>$Mail</a>\n</strong></p>"; if ( (!is_null($Apn)) && (!empty($Apn)) ) { echo"<p>Appareil photo : $Apn - "; if ( (!is_null($Style)) && (!empty($Style)) ) echo"Style de photo : $Style</p>"; } echo"<p>ID : $Identifiant - Pass : $Pass</p><p>Droits : $Droit - Rang : $Rang</p> <p>[ $Modifier ] [ $Supprimer ]</p> <p><span style='margin-left:525px;'><a href='#ancre1' class='xlink'> haut</a></span> </p><hr /></div>"; } } ?> </div> <div id="right_col"> <form id='form1' name='form1' method='post' action='adherent_ajout.php'> <p> <center> <input type='submit' name='Submit' value='Ajouter adhérent' /> </center> </p> <p> <center> <a href='../espace_adherent/annuaire_membres.php' class='xlink' title='retour au site'/>retour au site</a> </center> </p> <div id="liensRC"> <hr /> <?php $result = mysql_query($query) or die("Erreur dans l'extraction des informations<br>"); $nbP = mysql_num_rows($result); // Récuperation des résultats if ($nbP==0) { echo "Hum ! c'est ennuyeux, il semble que nous n'ayons pas de donnees a afficher. Ou qu'il y ait une erreur dans leur extraction.";} else { while ($row = mysql_fetch_array($result)){ $Nom = strtoupper($row['nom']); echo"<a href='#$Nom' class='slink'> $Nom</a>"; } } ?> <hr /> </div> <!--fin liensRC--> </div> </div> <!--------fin container--------> </form> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team