Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www
/
private
/
analyse_images
/
[
Home
]
File: analyse_supp.php
<?php include("../../inc/enligne_param.inc.php"); include("../../inc/gere_session.inc.php"); include("../../inc/salutations.inc.php"); include("../../GestionAccesDB/requetes.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> <title>CCPSA Club Photo d'Antony</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css"> <!-- @import url("../../css/analyse_images.css"); --> </style> <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'> </head> <body> <?php // Récupération des informations concernant l'image à modifier pour afficher l'image et le titre $IdAna = $_GET[id_ana]; $rep=get_image_a_analyser_par_id ($IdAna); $row=mysql_fetch_array($rep); // Permet d'afficher la photo dans l'interface suppression et de supprimer le fichier image $Photo_Path = '../../pict/analyse_images/'.$row["visuel_ana"]; $Titre = nl2br(ucwords($row["titre_ana"])); $CommentaireAuteur = $row["comment_ana"]; $Date = $row["date_ana"]; $Titre = ucwords($row['titre_ana']); $IdAuteur = $row['id_auteur']; //Récupération des informations de l'auteur de la photo à analyser $infos_auteur=get_informations_adherent ($IdAuteur); $rowAuteur=mysql_fetch_array($infos_auteur); $Auteur = format_prenom_nom ($rowAuteur['prenom'], $rowAuteur['nom']); $MailAuteur = $rowAuteur['mail']; mysql_free_result($infos_auteur); mysql_free_result($rep); //Récupération de la liste des commentaires de l'image $liste_commentaires = get_commentaires_image($IdAna); $nb_commentaires = mysql_num_rows($liste_commentaires); $allCommentaires = ""; $IdsCommentaires = ""; if ($nb_commentaires == 0) { $allCommentaires = "<p>La photo n'a aucun commentaire<p>"; } else { while ($row_commentaire = mysql_fetch_array($liste_commentaires)) { //Lecture des informations concerant le commentaire $Commentaire = ucfirst($row_commentaire['commentaire']); if ( $IdsCommentaires == "" ) { $IdsCommentaires = $row_commentaire['id']; } else { $IdsCommentaires .= ", "; $IdsCommentaires .= $row_commentaire['id']; } $IdRedacteur = $row_commentaire['id_redacteur']; //Récupération des informations de l'auteur du commentaire $infos_redacteur=get_informations_adherent ($IdRedacteur); $rowRedacteur=mysql_fetch_array($infos_redacteur); $Redacteur = format_prenom_nom ($rowRedacteur['prenom'], $rowRedacteur['nom']); mysql_free_result($infos_redacteur); $allCommentaires .= "<p><b>Analyse de $Redacteur :</b><br>"; $allCommentaires .= "$Commentaire</p>"; } } mysql_free_result($liste_commentaires); ?> <div id="page" class="clearfix"> <h1 class="txtcenter">SUPPRESSION</h1> <div id="container"> <div id="colonne_gauche"> <?php include("../../inc/menu_analyse_images.php");?> </div> <div id="colonne_centre"> <h3 class="txtcenter colorlightblue"> ATTENTION, CETTE SUPPRESSION SERA DÉFINITIVE !</h3> <?php echo '<h6 class="txtcenter"><b>'.$Auteur.'</b></h6>' ;?> <div id="vignetteimageref"><?php echo"<img src='$Photo_Path'/>"; ?></div> <?php echo '<p class="txtcenter"><b>'.$Titre.'</b></p>' ;?> </div> <!--fin main_col--> <div id="colonne_droite"> <form name="form" id="form" method="post" action="analyse_supp_x.php" enctype="multipart/form-data"> <input type="hidden" name="LeID" value="<?php echo $IdAna ?>" /> <input type="hidden" name="Photo_Path" value="<?php echo $Photo_Path ?>" /> <input type="hidden" name="IdsCommentaires" value="<?php echo $IdsCommentaires ?>" /> <input type="hidden" name="allCommentaires" value="<?php echo $allCommentaires ?>" /> <input type="hidden" name="titre" value="<?php echo $Titre ?>" /> <input type="hidden" name="mailAuteur" value="<?php echo $MailAuteur ?>" /> <input type="hidden" name="membre" value="<?php echo $Auteur ?>" /> <input type="hidden" name="description" value="<?php echo $CommentaireAuteur ?>" /> <input type="hidden" name="date" value="<?php echo $Date ?>" /> <!--BOUTONS VALIDATION--> <p> <input type="submit" name="Submit" value="SUPPRIMER" /> </p> </form> <p><a href="analyse.php" class="menuannul" title="ANNULER"/>RETOUR ANALYSE</a></p> </div> <!--fin right_col--> </div> <!--fin container--> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team