71 lines
2.2 KiB
PHP
Executable File
71 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 suppression des zones / sous-zones
|
|
if ( VerifPOST("Domaine", "# #", 3, 120) == "ChaineValide" )
|
|
{
|
|
// On est peut être en présence d'une sous-zone
|
|
$base = "sousdomainedns";
|
|
$champ = "Donnee";
|
|
$_POST['Domaine'] = substr($_POST['Domaine'], 3, (strlen($_POST['Domaine']) - 3));
|
|
}
|
|
else
|
|
{
|
|
$base = "domainedns";
|
|
$champ = "Domaine";
|
|
}
|
|
|
|
if ( VerifPOST("Domaine", "#^[a-z0-9.-]+$#", 1, 120) != "ChaineValide" )
|
|
{
|
|
$_SESSION['Resultat'] = "'".$_POST['Domaine']."' Aucun (sous-) domaine n'a été selectionné";
|
|
$_SESSION['Lien'] = "Page-Dns-Suppression.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
if ( VerifPOST("Confirmation", "#^oui$#", 3, 3) != "ChaineValide" )
|
|
{
|
|
$_SESSION['Resultat'] = "Le code de confirmation est incorrect";
|
|
$_SESSION['Lien'] = "Page-Dns-Suppression.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
$VerifExistence = $MySql->Select ("*", $base, $champ."='".$_POST['Domaine']."'", "", "", "", "");
|
|
if ( $VerifExistence == FALSE )
|
|
{
|
|
$_SESSION['Resultat'] = "Ce (sous-) domaine n'existe pas";
|
|
$_SESSION['Lien'] = "Page-Dns-Suppression.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
if ( $VerifExistence[0]["Status"] != "2" )
|
|
{
|
|
$_SESSION['Resultat'] = "Ce (sous-) domaine n'est pas activé (ou deja en cours de suppression)";
|
|
$_SESSION['Lien'] = "Page-Dns-Suppression.html";
|
|
Redirect ('resultat.html');
|
|
}
|
|
|
|
$MySql->Update ($base, "Status", "3", $champ."='".$_POST['Domaine']."'");
|
|
if($champ == "Domaine")
|
|
{
|
|
$MySql->Update ("sousdomainedns", "Status", "3", "Domaine='".$_POST['Domaine']."'");
|
|
}
|
|
|
|
Redirect ('Page-Dns-Recapitulatif.html');
|
|
|
|
?>
|