-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseGUI.php
66 lines (47 loc) · 1.31 KB
/
useGUI.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
<?
require("sessionCheck.php");
require("config.php");
$ID= $_GET["ID"];
if($status < $accesslevel) {
print "<h1>ERROR: You cant assign a user a better access level than you have.</h1>";
print "Logged and noted.";
exit;
}
$Connect = mysqli_connect($DB_SERVER, $user, $password) or die ("Cant connect to MySQL at $DB_SERVER");
mysqli_select_db($DATABASE,$Connect) or die ("Cant connect to $DATABASE database");
$sql_update="UPDATE guiconfig SET selected='0' WHERE id='$selectedID'";
$result=mysqli_query($sql_update);
if(!$result) {
print "MySQL error: " . mysqli_error();
exit;
}
$sql_update="UPDATE guiconfig SET selected='1' WHERE id='$ID'";
$result=mysqli_query($sql_update);
if(!$result) {
print "MySQL error: " . mysqli_error();
exit;
}
//header("Location: root.php?SID=$sidVAR");
$sql_update="SELECT * FROM guiconfig WHERE selected=1";
//print "sql_update : $sql_update <br>\n";
$result=mysqli_query($sql_update);
if(!$result) {
print "MySQL error: " . mysqli_error();
exit;
}
if(mysqli_num_rows($result)>0) {
$row = mysqli_fetch_array($result);
} else { // PRoblems. Use some default
}
$selectedID=$row["id"];
$pageStyle=$row["pageStyle"];
$pageStyleBad=$row["pageStyleBad"];
$projectName=$row["projectName"];
?>
<html>
<?
print $pageStyle;
//print "sql: $sql_update <br>\n";
?>
Update complete
</html>