Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www
/
pages
/
[
Home
]
File: analyse_images.php
<?php include("../inc/en_tete_avec_lightbox.php"); ?> <script type="text/javascript"> $(document).ready(function(){ if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/iPad/i))) { $(".change-this-class li a").click(function(){ // Update '.change-this-class' to the class of your menu // Leave this empty, that's the magic sauce }); } }); </script> </head> <body> <div id="page"> <div id="container"> <h1>ANALYSE D IMAGES</h1> <!--AFFICHAGE MISE A JOUR --> <p> </p> <!--Colonne gauche--> <div id="col_nav"> <?php include("../inc/menu_navigation.php");?> </div> <!--fin colnav--> <div id="col_AB"> <?php // Création et envoi de la requete $query = "SELECT * FROM analyse_images adherent ORDER BY id_ana DESC"; $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 "<p>Aucune donnée à afficher</p>";} else { while ($row = mysql_fetch_array($result)){ $Titre = strtoupper($row['titre_ana']); $Commentaire = nl2br($row["comment_ana"]); $Visuel = $row["visuel_ana"]; $Membre = $row["membre_ana"]; $Date = $row["date_ana"]; echo" <div class='marge'> <p><center><b>Analyse d image proposée par $Membre</b></center></p> <address><center>Créée le : $Date</address> <p><img src='../../pict/analyse_images/".$Visuel."'/></p> <h4><center>$Titre</center></h4> <p><center>Intention ou commentaire : $Commentaire</center></p> </div>"; } } ?> </div> <!--fin colAAA--> <!--MENU BAS--> <hr /> <p class="menu_bas"> |<a href="legal.php" class="zlink"> bureau et légalité </a> |<a href="http://kermann.free.fr" class="zlink" target="_blank"> Design Daniel Kermann |</a></p> <!--FIN MENU BAS--> </div> <!--fin container--> </div> <!--fin page--> </body></html>
©
2020 Black Eagle Team