74 lines
2.2 KiB
PHP
Executable File
74 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 de suppression de base de données
|
|
|
|
if ( VerifPOST("Base", "#^[a-z0-9]+_[a-z0-9]+$#", 3, 25) == "ChaineValide" )
|
|
{
|
|
if ( VerifPOST("MotDePasse", "#^[a-z0-9]+$#", 3, 9) == "ChaineValide" )
|
|
{
|
|
$VerifExistence = $MySql->Select ("*", "basededonnee", "Nom='".$_POST['Base']."'", "", "", "", "");
|
|
if ( $VerifExistence != FALSE )
|
|
{
|
|
if ( $VerifExistence[0]["Utilisateur"] == $_SESSION['Utilisateur'] )
|
|
{
|
|
if ( $VerifExistence[0]["Status"] == "2" )
|
|
{
|
|
$UpdateDB = $MySql->Update ("basededonnee", "Status", "3", "Nom='".$_POST['Base']."'");
|
|
Redirect ('Page-MySql-Recapitulatif.html');
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Cette base de donnée n'est pas activée (ou deja en cours de suppression)";
|
|
$_SESSION['Lien'] = "Page-MySql-SuppressionBdd.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Monsieur veut la jouer h4X00R ?";
|
|
$_SESSION['Lien'] = "Page-MySql-SuppressionBdd.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Cette base de données n'existe pas";
|
|
$_SESSION['Lien'] = "Page-MySql-SuppressionBdd.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Le mot de passe est incorrect";
|
|
$_SESSION['Lien'] = "Page-MySql-SuppressionBdd.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$_SESSION['Resultat'] = "Aucune bdd n'a été sélectionnée";
|
|
$_SESSION['Lien'] = "Page-MySql-SuppressionBdd.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|