Samx Here
n1udSecurity


Server : Apache
System : Linux ks5.tuic.fr 6.1.0-18-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.76-1 (2024-02-01) x86_64
User : pragmatice ( 1003)
PHP Version : 8.2.24
Disable Function : NONE
Directory :  /home/pragmatice/public_html/atice/abonnes-old/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/pragmatice/public_html/atice/abonnes-old/reMail.php
<?php
if(empty($_COOKIE['idAbonne'])){header("Location:index.php");}
$idAbonne=$_COOKIE['idAbonne'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Reprise d'abonnement</title>
  <link rel="Stylesheet"
        href="../outils/gestatice.css"
        type="text/css" />
<script type="text/javascript" src="../outils/verif.js"></script>
</head>

<body>
<?php

require("../outils/config_atice.php");




$req2="select * from gestiai where idIai='$SESSION_USER'";
$res2=mysql_query($req2, $connexion);
$li2=mysql_fetch_object($res2);
$mail=$li2->mail;
$nom=$li2->nom;
$prenom=$li2->prenom;


if($valid){

$texte_mail="set atice MAIL ";
  mail("sympa@liste.aft-rn.net",
     "Reprise",
     $texte_mail,
     "From: $mail\n Reply-To:$mail\n");

echo"<h2>OPERATION EFFECTUEE</h2><hr />";
echo"<h3 style=\"text-align:center\"><br /><br /><br /><a href=\"menu.php\">Retour au Menu</a></h3>";



exit;
}

echo"<h2>Reprise de la r�ception des messages de <br />$li2->prenom&nbsp;$li2->nom ( $mail )</h2><hr />";
echo"<p>Cette fonction vous permet recevoir � nouveau les messages de la liste atice.<br /></p>";
echo"<h3 style=\"text-align:center\"><br /><br /><br /><a href=\"reMail.php?valid=oui\">Cliquez sur ce lien pour confirmer la r�ception des messages</a></h3>";
?>

</body>
</html>

SAMX