-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZmienCel.php
90 lines (74 loc) · 2.7 KB
/
ZmienCel.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
81
82
83
84
85
86
87
88
89
90
<?php
require 'auth.php';
if (isset($_SESSION['TOTP']) && $_SESSION['TOTP']='JW') {
?>
<?php
if (isset($_GET['id_celu'])) {
$id_celu = $_GET['id_celu'];
$id_uzytkownika = $_GET['id_uzytkownika'];
require "ConnectToDB.php";
$KwProfileLista = "call ProfileLista;";
$WProfileLista=mysqli_query($link, $KwProfileLista);
} ?>
<!DOCTYPE html>
<html lang="pl" dir="ltr">
<head>
<title>Zmień profil głosiciela</title>
<?php require "czesci/head";?>
</head>
<body>
<?php require "czesci/navbar_glowny";?>
<div class="table-responsive">
<table class="table table-dark text-center">
<form action="ZmienCel.php" method="post">
<tr>
<td >
<select name='id_celu' id="id_celu">
<?php
while ($ProfileLista = mysqli_fetch_array($WProfileLista)) {
if ($ProfileLista['id_celu'] == $id_celu) {
echo "<option selected='selected' value=".$ProfileLista['id_celu'].">".$ProfileLista['pelna_nazwa_celu']."</option>";
} else {
echo "<option value=".$ProfileLista['id_celu'].">".$ProfileLista['pelna_nazwa_celu']."</option>";
}
} ?>
</select>
</td>
</tr>
<tr>
<td>
<input type="hidden" name="editor" value="1">
<input type="hidden" name="id_uzytkownika" value="<?php echo $id_uzytkownika; ?>">
<input type="submit" name="" value="Gotowe">
</td>
</tr>
</form>
</div>
</body>
</html>
<?php
if (isset($_POST['editor']) && $_POST['editor'] ==1) {
$id_uzytkownika = $_POST['id_uzytkownika'];
$id_celu = $_POST['id_celu'];
require "ConnectToDB.php";
$KwZmienCel = "UPDATE uzytkownicy SET id_celu = '$id_celu' where id_uzytkownika = '$id_uzytkownika';";
$ZmienCel = mysqli_query($link, $KwZmienCel);
if ($ZmienCel)
{
echo '<script language="javascript">';
echo 'alert("Zmieniono profil głosiciela")';
echo '</script>';
header("refresh:0;url=Sprawozdania.php");
}
else {
echo '<script language="javascript">';
echo 'alert("Nie udało się zmienić profilu głosiciela")';
echo '</script>';
header("refresh:0;url=Sprawozdania.php");
}
} ?>
<?php
} else {
header("refresh:0;url=Logowanie.php?skad=ZmienCel.php?id_celu=$id_celu");
}
?>