-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateGUI.php
More file actions
42 lines (29 loc) · 884 Bytes
/
updateGUI.php
File metadata and controls
42 lines (29 loc) · 884 Bytes
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
<?
require("sessionCheck.php");
require("config.php");
$ID= $HTTP_POST_VARS["id"];
$good= $HTTP_POST_VARS["good"];
$bad= $HTTP_POST_VARS["bad"];
$name= $HTTP_POST_VARS["projName"];
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 pageStyle='$good', pageStyleBad='$bad', projectName='$name' WHERE id='$ID'";
$result=mysqli_query($sql_update);
if(!$result) {
print "MySQL error: " . mysqli_error();
exit;
}
//header("Location: root.php?SID=$sidVAR");
?>
<html>
<?
print $pageStyle;
//print "sql: $sql_update <br>\n";
?>
Update complete
</html>