Alternc  3.2
Alternc logiel libre pour l'hébergement
 All Data Structures Namespaces Files Functions Variables Pages
sql_users_del.php
Go to the documentation of this file.
1 <?php
2 /*
3  $Id: sql_del.php,v 1.3 2003/06/10 07:20:29 root Exp $
4  ----------------------------------------------------------------------
5  AlternC - Web Hosting System
6  Copyright (C) 2002 by the AlternC Development Team.
7  http://alternc.org/
8  ----------------------------------------------------------------------
9  Based on:
10  Valentin Lacambre's web hosting softwares: http://altern.org/
11  ----------------------------------------------------------------------
12  LICENSE
13 
14  This program is free software; you can redistribute it and/or
15  modify it under the terms of the GNU General Public License (GPL)
16  as published by the Free Software Foundation; either version 2
17  of the License, or (at your option) any later version.
18 
19  This program is distributed in the hope that it will be useful,
20  but WITHOUT ANY WARRANTY; without even the implied warranty of
21  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  GNU General Public License for more details.
23 
24  To read the license please visit http://www.gnu.org/copyleft/gpl.html
25  ----------------------------------------------------------------------
26  Original Author of file: Benjamin Sonntag
27  Purpose of file: Delete a mysql user database
28  ----------------------------------------------------------------------
29 */
30 require_once("../class/config.php");
31 $fields = array (
32  "confirm" => array ("post", "string", ""),
33 );
35 if(!isset($error)){
36  $error="";
37 }
38 if (isset($confirm) && ($confirm=="y")) {
39  reset($_POST);
40  while (list($key,$val)=each($_POST)) {
41  if (substr($key,0,4)=="del_") {
42  // Effacement de la base $val
43  $r=$mysql->del_user($val);
44  if (!$r) {
45  $error.=$err->errstr()."<br />";
46  } else {
47  $error.=sprintf(_("The user %s has been successfully deleted"),$val)."<br />";
48  }
49  }
50  }
51  include("sql_users_list.php");
52  exit();
53 }
54 
55 include_once("head.php");
56 
57 ?>
58 <h3><?php __("MySQL users"); ?></h3>
59 <hr id="topbar"/>
60 <br />
61 <p class="alert alert-warning"><?php __("WARNING"); ?></big><br /><?php __("Confirm the deletion of the following MySQL users"); ?><br />
62 </p>
63 <form method="post" action="sql_users_del.php" id="main">
64 <p>
65 <input type="hidden" name="confirm" value="y" />
66 <?php
67 reset($_POST);
68 while (list($key,$val)=each($_POST)) {
69  if (substr($key,0,4)=="del_") {
70  echo "<input type=\"hidden\" name=\"$key\" value=\"$val\" />".$val."<br />\n";
71  }
72 }
73 
74 ?>
75 <br />
76 <input type="submit" class="inb ok" name="sub" value="<?php __("Yes, delete the MySQL user"); ?>" /> <input type="button" class="inb cancel" name="non" value="<?php __("No, don't delete the MySQL user"); ?>" onclick="history.back()" />
77 </p>
78 </form>
79 <?php include_once("foot.php"); ?>