summaryrefslogtreecommitdiff
path: root/www-ssl/admin/userDefaultSetting.php
blob: 3c47ebc7a725d2e75aa4ffe82ae1019b0aadc764 (plain)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?PHP

$title = "Defalut User Setting";
$header = "Defalut User Setting";
include ("../../includes/header.php");
include ("../../includes/funktion_db_list.php");

echo "Hallo ".$_SESSION['Nick'].
	",<br>\nhier hast du die M&ouml;glichkeit, die Defaulteinstellungen f&uuml;r neue User einzustellen:<br><br>\n";
				
echo "<table border=\"0\" class=\"border\">\n";
echo "\t<tr class=\"contenttopic\">\n";
echo "\t\t<th>Page</th>\n\t\t<th>Show</th>\n\t\t<th></th>\n";
echo "\t</tr>\n";

if( isset( $_GET["Field"]) && isset( $_GET["Default"]) && isset( $_GET["Send"]))
{
	switch( $_GET["Send"])
	{
		case "New":
 			$SQL = "ALTER TABLE `UserCVS` ADD `". $_GET["Field"]. "` ".
				"CHAR( 1 ) DEFAULT '". $_GET["Default"]. "' NOT NULL";
			$Erg = mysql_query( $SQL, $con);
			if( $Erg == 1)
				echo "<H2>Create ".$_GET["Field"]. " = ". $_GET["Default"]. " succesfull</h2>\n";
			else
				echo "<H2>Create ".$_GET["Field"]. " = ". $_GET["Default"]. " error...</h2>\n".
					"[". mysql_error(). "]<br><br>";
			break;
		case "Del":
			echo "\t<tr class=\"content\">\n";
			echo "\t\t<form action=\"userDefaultSetting.php\">\n";
			echo "\t\t\t<td><input name=\"Field\" type=\"text\" value=\"". $_GET["Field"]. "\" readonly></td>\n";
			echo "\t\t\t<td><input name=\"Default\" type=\"text\" value=\"". $_GET["Default"]. "\" readonly></td>\n";
			echo "\t\t\t<td><input type=\"submit\" name=\"Send\" value=\"Del sure\"></td>\n";
			echo "\t\t</form>\n";
			echo "\t</tr>\n";
			break;
		case "Del sure":
			$SQL = "ALTER TABLE `UserCVS` DROP `". $_GET["Field"]. "` ";
			$Erg = mysql_query( $SQL, $con);
			if( $Erg == 1)
				echo "<H2>Delete ".$_GET["Field"]. " succesfull</h2>\n";
			else
				echo "<H2>Delete ".$_GET["Field"]. " error...</h2>\n".
					"[". mysql_error(). "]<br><br>";
			break;
		case "SetForAllUser":
			$SQL = "UPDATE `UserCVS` SET `". $_GET["Field"]. "`='". $_GET["Default"]. "'";
			$Erg = mysql_query( $SQL, $con);
			if( $Erg == 1)
				echo "<H2>UPDATE ".$_GET["Field"]. " = ". $_GET["Default"]. " for all Users succesfull</h2>\n";
			else
				echo "<H2>UPDATE ".$_GET["Field"]. " = ". $_GET["Default"]. " for all Users error...</h2>\n".
					"[". mysql_error(). "]<br><br>";
		case "Save":
			$SQL = "ALTER TABLE `UserCVS` CHANGE `". $_GET["Field"]. "` ".
				"`". $_GET["Field"]. "` CHAR( 1 ) NOT NULL DEFAULT '". $_GET["Default"]. "'";
			$Erg = mysql_query( $SQL, $con);
			if( $Erg == 1)
				echo "<H2>Write ".$_GET["Field"]. " = ". $_GET["Default"]. " succesfull</h2>\n";
			else
				echo "<H2>Write ".$_GET["Field"]. " = ". $_GET["Default"]. " error...</h2>\n".
					"[". mysql_error(). "]<br><br>";
			break;
	} //SWITCH
} //IF(


$erg = mysql_query("SHOW COLUMNS FROM `UserCVS`");
echo mysql_error();

for( $i=1; $i<mysql_num_rows($erg); $i++)
{
	echo "\t<tr class=\"content\">\n";
	echo "\t\t<form action=\"userDefaultSetting.php\">\n";
	echo "\t\t\t<input name=\"Field\" type=\"hidden\" value=\"". mysql_result( $erg, $i, "Field"). "\">\n";
	echo "\t\t\t<td>". mysql_result( $erg, $i, "Field"). "</td>\n";
	echo "\t\t\t<td>";
	if( mysql_result( $erg, $i, "Default") == "Y")
		echo	"<input type=\"radio\" name=\"Default\" value=\"Y\" checked>Y\n".
			"\t\t\t    <input type=\"radio\" name=\"Default\" value=\"N\">N";
	else
		echo	"<input type=\"radio\" name=\"Default\" value=\"Y\">Y\n".
			"\t\t\t    <input type=\"radio\" name=\"Default\" value=\"N\" checked>N";
	echo "</td>\n";
	echo "\t\t\t<td><input type=\"submit\" name=\"Send\" value=\"Save\">\n";
	echo "\t\t\t    <input type=\"submit\" name=\"Send\" value=\"Del\">\n";
	echo "\t\t\t    <input type=\"submit\" name=\"Send\" value=\"SetForAllUser\"></td>\n";
	echo "\t\t</form>\n";
	echo "\t</tr>\n";
}
	
echo "\t<tr class=\"content\">\n";
echo "\t\t<form action=\"userDefaultSetting.php\">\n";
echo "\t\t\t<input name=\"New\" type=\"hidden\" value=\"New\">\n";
echo "\t\t\t<td><input name=\"Field\" type=\"text\" value=\"new\"></td>\n";
echo "\t\t\t<td><input type=\"radio\" name=\"Default\" value=\"Y\">Y\t".
	"\t\t\t\t<input type=\"radio\" name=\"Default\" value=\"N\">N</td>\n";
echo "\t\t\t<td><input type=\"submit\" name=\"Send\" value=\"New\"></td>\n";
echo "\t\t</form>\n";
echo "\t</tr>\n";



echo "</table>\n";

include ("../../includes/footer.php");
?>