70 lines
2.2 KiB
PHP
Executable File
70 lines
2.2 KiB
PHP
Executable File
<?php
|
|
/*
|
|
Copyright (C) 2007 Mercier Benjamin
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
// Librairie contenant la suppresion d'un compte ftp
|
|
|
|
if ( VerifPOST("Nom", "#^[a-z0-9]+_[a-z0-9]+$#", 3, 25) == "ChaineValide" )
|
|
{
|
|
if ( VerifPOST("MotDePasse", "#^[a-z0-9]+$#", 3, 9) == "ChaineValide" )
|
|
{
|
|
$VerifExistence = $MySql->Select ("*", "ftp", "Nom='".$_POST['Nom']."'", "", "", "", "");
|
|
if ( $VerifExistence != FALSE )
|
|
{
|
|
if ( $VerifExistence[0]["Utilisateur"] == $_SESSION['Utilisateur'] )
|
|
{
|
|
if ( $VerifExistence[0]["Status"] == "2" )
|
|
{
|
|
$UpdateDB = $MySql->Update ("ftp", "Status", "3", "Nom='".$_POST['Nom']."'");
|
|
Redirect ('Page-Ftp-Recapitulatif.html');
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Ce compte n'est pas activé (ou deja en cours de suppression)";
|
|
$_SESSION['Lien'] = "Page-Ftp-SuppressionCompte.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Monsieur veut la jouer h4X00R ?";
|
|
$_SESSION['Lien'] = "Page-Ftp-SuppressionCompte.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Ce compte n'existe pas";
|
|
$_SESSION['Lien'] = "Page-Ftp-SuppressionCompte.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Le mot de passe est incorrect";
|
|
$_SESSION['Lien'] = "Page-Ftp-SuppressionCompte.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Aucun compte n'est selectioné";
|
|
$_SESSION['Lien'] = "Page-Ftp-SuppressionCompte.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
?>
|