Black Eagle Team Minishell
Path:
/
home
/
ccpsafy
/
www
/
private
/
analyse_images
/
[
Home
]
File: analyse_membre.php
<?php include("../../inc/enligne_param.inc.php"); include("../../inc/gere_session.inc.php"); include("../../inc/salutations.inc.php"); include("../../GestionAccesDB/requetes.php"); $date=(date('j-m-Y')); $heure=(date('G:i')); $idImage=$_GET[divers]; //Récupération des informations concernant l'image $infosImage = get_image_a_analyser_par_id ($idImage); $nbRow = mysql_num_rows($infosImage); if ($nbRow == 0) { echo "<p class='txtcenter'>Oups problème de récupération de données</p>"; } else { $row=mysql_fetch_array($infosImage); $idAuteurImage = $row['id_auteur']; $commentaireAuteurImage = nl2br( ucwords($row["comment_ana"])); $titreImage = nl2br( ucwords($row["titre_ana"])); $dateImage = $row["date_ana"]; $visuelImage = $row["visuel_ana"]; $photoPath = '../../pict/analyse_images/' . $visuelImage; mysql_free_result ($infosImage); //Récupération des informations concernant l'auteur de l'image $infosAuteurImage=get_informations_adherent($idAuteurImage); $row=mysql_fetch_array($infosAuteurImage); $mailAuteurImage = $row['mail']; $nomFormateAuteurImage = format_prenom_nom ($row['prenom'], $row['nom']); mysql_free_result ($infosAuteurImage); //Récupération de la liste des adhérents ayant déjà commenté l'image $listeCommentairesImage = get_commentaires_image($idImage); $nbCommentaires = mysql_num_rows($listeCommentairesImage); $listeMailAnalyseurs = ""; if ($nbCommentaires > 0) { //Récupération du mail de chaque rédacteur while ($row = mysql_fetch_array($listeCommentairesImage)) { $idAnalyseur = $row["id_redacteur"]; $infosRedacteurCommentaire = get_informations_adherent ($idAnalyseur); $row=mysql_fetch_array($infosRedacteurCommentaire); if ( ( $row['mail'] != $mailAuteurImage ) && ( $row['mail'] != $MailMembreConnecte ) ) { if ($listeMailAnalyseurs == "") { $listeMailAnalyseurs = $row['mail']; } else { if (strpos($listeMailAnalyseurs, $row['mail']) == false) { $listeMailAnalyseurs = $listeMailAnalyseurs . ";" . $row['mail']; } } } mysql_free_result ($infosRedacteurCommentaire); } } mysql_free_result ($listeCommentairesImage); } ?> <!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</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> <div id="page" class="clearfix"> <h1 class="txtcenter">COMMENTAIRE IMAGE </h1> <p> </p> <div id="container" class="bkgblanc"> <div id="colonne_gauche"> <?php include("../../inc/menu_analyse_images.php");?> </div> <div id="colonne_centre" class="bkgblanc colornoir txtjustif "> <h4 class="txtcenter"><?php echo strtoupper($LePrenom).' COMMENTES ICI LA PHOTO DE '.strtoupper($nomFormateAuteurImage);?> </h4> <form name="form" id="form" method="post" action="commentaires_images_x.php#<?php echo $visuelImage ; ?>" enctype="multipart/form-data"> <?php echo '<h2 class="txtcenter">'.$titreImage.'</h2>'; ?> <div id="vignetteimageref"><?php echo"<img src='../../pict/analyse_images/".$visuelImage."'/>"; ?></div> <h5 class="txtcenter">Ton commentaire :</h5> <textarea name="commentaire" type="text"></textarea> <!--on passe Id image--> <input type="hidden" name="id_image" value="<?php echo $idImage ?>" > <!--on passe l'Id du redacteur--> <input type="hidden" name="id_redacteur" value="<?php echo $IdMembreConnecte ?>" > <!--on passe le redacteur pour l'écriture du mail--> <?php $redacteur = format_prenom_nom (ucwords($LePrenom), ucwords($LeNom))?> <input type="hidden" name="redacteur" value="<?php echo $redacteur ?>" > <input type="hidden" name="nomAuteur" value="<?php echo $nomFormateAuteurImage ?>" > <input type="hidden" name="description" value="<?php echo $commentaireAuteurImage ?>" > <input type="hidden" name="dateImage" value="<?php echo $dateImage ?>" > <input type="hidden" name="photoPath" value="<?php echo $photoPath ?>" > <!--on passe la date--> <input type="hidden" name="date" value="<?php echo $date ?>" /> <input type="hidden" name="heure" value="<?php echo $heure ?>" /> <input type="hidden" name="titre" value="<?php echo $titreImage ?>" /> <input type="hidden" name="mailAuteur" value="<?php echo $mailAuteurImage ?>" /> <input type="hidden" name="mailCC" value="<?php echo $listeMailAnalyseurs ?>" /> </div> <!--fin main_col--> <div id="colonne_droite"> <p> <input type="submit" name="Submit" value="VALIDER" class="menuvalid"/> </p> </form> <p><a href="analyse_perso.php" class="menumodif" title="VERS PHOTOS..."/>VERS PHOTOS <?php echo ucfirst($LePrenom);?></a></p> <p><a href="analyse.php" class="menumodif" title="RETOUR ACCUEIL"/>RETOUR ANALYSE</a></p> <!--<p><a href="accueil_analyse.php" class="menuannul" title="RETOUR ACCUEIL"/>RETOUR ACCUEIL</a></p>--> </div> <!--fin right_col--> </div> <!--fin container--> <!--BOUTONS VALIDATION--> <!--fin right_col--> </div> <!--fin page--> </body> </html>
©
2020 Black Eagle Team