-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroup_add.php
81 lines (66 loc) · 2.88 KB
/
group_add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2006 Michael Earls |
| |
| 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. |
+-------------------------------------------------------------------------+
| - phpIP - http://www.phpip.net/ |
+-------------------------------------------------------------------------+
*/
ob_start();
// include the layout file
include 'layout.php';
login_check();
admin_check();
switch ($_REQUEST["mode"]) {
case "add":
{
if (isset ($_POST['adgroup'])) { $adgroup = strip_tags($_POST['adgroup']); }
// Use the myheader function from layout.php
myheader("Adding Group");
$update = mysql_query("SELECT `group` FROM `groups` WHERE `group` = '$adgroup'");
$num_results = mysql_num_rows($update);
if ($num_results == '0') {
$update = mysql_query("INSERT INTO `groups` (`group`) VALUES ('$adgroup')");
?>
<h2><font color="FF0000">Updating Database, Please wait</font></h2>
<meta http-equiv=Refresh content=1;url="group_add.php">
<?php
} else {
echo "<h2><font color=\"FF0000\">Duplicate entry in the database ($adgroup), Please use<br />
your browser back button and complte the form.</font></h2>";
}
}
break;
default:
// Use the myheader function from layout.php
myheader("Add Group");
echo "<FORM action=\"group_add.php?mode=add\" method=\"post\" name=\"groupadd\">";
echo "<table class=\"listTable\" style=\"width:100%\" cellpadding=\"0\" cellspacing=\"0\">";
echo "<TR class=\"listCell\">";
echo "<TD colspan=\"2\" class=\"listCell\">GROUP ADD</TD>";
echo "</TR>";
echo "<TR class=\"listHeadRow\">";
echo "<TD colspan=\"2\" class=\"listCell\">GROUPS</TD>";
echo "</TR>";
echo "<TR class=\"listRow2\">";
echo "<TD class=\"listCell\">Name</TD>";
echo "<TD class=\"listCell\"> <INPUT name=\"adgroup\" value=\"\"></TD>";
echo "</TR>";
echo "</table>";
echo "<a href=\"javascript:document.groupadd.submit()\">[ADD]</a>";
echo "</form>";
// Use the footer function from layout.php
footer();
} // end switch
//------------------------------------------------------------------------------------------
?>