| Current Path : /home/happyrenas/old/huissier-express.fr/administration/2020/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/old/huissier-express.fr/administration/2020/desabo.php |
<?
include("config.php");
include("includes/fonctions.php");
$page = "huissier";
$huissier_id = trim($db->escape($_GET['huissier_id']));
$mail = trim($db->escape($_GET['email_huissier']));
$password = trim($db->escape($_GET['p']));
if ($mail && $password)
{
$myquery="select * from huissier where statut=1 AND id=".$huissier_id." AND mail = '$mail' AND password = '$password'";
$marequete = $db->get_row($myquery);
}
if ($marequete->id)
{
$requete="UPDATE huissier set statut = 2 where id =".$huissier_id;
//echo $requete;
$db->query($requete);
echo "Nous avons pris en compte votre demande";
}
else
{
echo "Une erreue a eu lieu.";
}
?>