summaryrefslogtreecommitdiff
path: root/beta_accents/app/popcommentaire.php
diff options
context:
space:
mode:
Diffstat (limited to 'beta_accents/app/popcommentaire.php')
-rw-r--r--beta_accents/app/popcommentaire.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/beta_accents/app/popcommentaire.php b/beta_accents/app/popcommentaire.php
deleted file mode 100644
index bbb5922..0000000
--- a/beta_accents/app/popcommentaire.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php require_once ('include/connect.inc.php'); ?>
-<h2>Editer votre commentaire</h2>
-<div class="popup_contenu">
-<form id="formcommentaire" method="get" action="">
-<textarea name="txtCommentaire" rows="4" cols="40">
-<?php
- $requete = "SELECT commentaireReponse FROM AWOR_Repondre WHERE idP=".$_GET['idP']." AND idR=".$_GET['idR']."";
- $result = mysql_query($requete);
- if($result && mysql_num_rows($result) > 0)
- {
- $com = mysql_fetch_array($result);
-
- echo htmlentities($com['commentaireReponse'], ENT_QUOTES);
- }
-
-?>
-</textarea>
-<br/><br/>
-<?php if (isset($_GET['idR'])) echo '<input type="hidden" name="idR" value="'.$_GET['idR'].'" />' ?>
-<input type="hidden" name="action" value="commentaire" />
-<input type="submit" value="Enregistrer" /><input type="button" value="Fermer" onclick="popoff('popcommentaire')" />
-</form>
-</div> \ No newline at end of file