Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www.old
/
private
/
salons
/
[
Home
]
File: salons.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>CCPSA Salons & Concours gestion</title> <style type="text/css"> <!-- @import url("../../css/form.css"); --> </style> </head> <body> <div id="page" class="clearfix"> <h2>CONCOURS & SALONS - GESTION</h2> <h5>Interface Administrateur. Session ouverte pour : <?php echo ucfirst($LePrenom).' '.strtoupper($LeNom) ; ?>.</h5> <div id="left_col"> <?php include("../../inc/menu.inc.php");?> </div> <div id="container"> <div id="main_col"> <!--FORMULAIRE--> <form id="form1" name="form1" method="post" action="salons_ajout.php" enctype="multipart/form-data"> <!--MENU--> <!--CODE PHP--> <?php // Création et envoi de la requete $query = "SELECT * FROM salons ORDER BY id ASC"; $result = mysql_query($query) or die("<p>Erreur dans l'extraction des informations</p>"); $nbP = mysql_num_rows($result); // Récuperation des résultats if ($nbP==0) { echo "Aucune donnée à afficher";} else { while ($row = mysql_fetch_array($result)){ $Depot = $row['jourdepot'].'-'.$row['moisdepot'].'-'.$row['andepot']; $Concours =$row['jourconcours'].'-'.$row['moisconcours'].'-'.$row['anconcours']; $Titre = strtoupper($row['titre']); $Theme = $row['theme']; $Genre1 = $row['genre1']; $Genre2 = $row['genre2']; $Genre3 = $row['genre3']; $Genre4 = $row['genre4']; $NbAuteur = $row['nbphotosauteur']; $NbClub = $row['nbphotosclub']; $Lien = $row['lien']; $Fichier = $row['file']; $Url = $Lien; $Texte = $row['texte']; // Liens de modification $Modifier = '<a class="vlink" href = "salons_modif.php?chgt='.$row['id'].'">Modifier</a>'; $Supprimer = '<a class="rlink" href = "salons_supp.php?chgt='.$row['id'].'">Supprimer</a>'; //Affichage echo " <p>$Titre</p> <h5>Thème : $Theme</h5> <p><strong>$Genre1</strong></p> <p><strong>$Genre2</strong></p> <p><strong>$Genre3</strong></p> <p><strong>$Genre4</strong></p> <p>Nb de Photos par Auteur : $NbAuteur</p> <p>Nb de Photos pour le Club : $NbClub</p> <p>DERNIER DELAI POUR DEPOSER LES PHOTOS AU CLUB : $Depot</p> <p>Date du Concours ou Salon : $Concours</p> <p><a class='xlink' href=\"../telech/$Fichier\" target='_blank'>Telechargez le Règlement</a>: $Fichier</p> <p>$Texte</p> <p><a href=\"$Lien\" class='xlink' target='_blank'>$Url</a></p> <p>$Modifier $Supprimer</p><hr /> "; } } ?> <!--FIN CODE PHP--> </div> <!--fin main_col--> <form id="form" name="form" method="post" action="salons_ajout.php"> <!--/DATE DE MISE A JOUR DU SITE/--> <input type="hidden" name="date" value="<?php echo $date; ?>" /> <input type="hidden" name="heure" value="<?php echo $heure; ?>" /> <!----> <div id="right_col"> <!--BOUTONS VALIDATION--> <p> <input type="submit" name="Submit" value="Ajouter une rubrique" /> </p> <p> <center> <a href="../../pages/concours.php" class="xlink" title="retour au site"/>retour au site</a> </center> </p> </form> </div> </div> <!--------fin container--------> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team