-
Notifications
You must be signed in to change notification settings - Fork 1
/
ModalAddWerkproces.php
62 lines (59 loc) · 2.67 KB
/
ModalAddWerkproces.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
<div id="ModalAddWerkproces" class="modal">
<div class="modal-header" style="padding-left: 24px;">
<h5>Werkproces toevoegen</h5>
</div>
<div class="modal-content">
<!--START CODE VOOR WERKPROCES TOEVOEGEN BACKEND + KOPPELING NAAR KERNTAAK TOE -->
<form method="POST">
<label>Om een werkproces toe te voegen selecteert u eerst de bijbehorende kerntaak en vult u daarna het werkproces in:</label>
<br><br>
<?php
$error = '';
$get_kerntaak = "SELECT * FROM kerntaak";
$result_kerntaak = $conn->query($get_kerntaak);
if ($result_kerntaak->num_rows > 0) {
?>
<select name="kerntaak_option" required>
<option selected="selected" disabled>Kies een kerntaak</option>
<?php
while ($row_kerntaak = $result_kerntaak->fetch_assoc()) {
?>
<option value="<?php echo $row_kerntaak["kerntaak_id"]?>"><?php echo $row_kerntaak["kerntaak_naam"]?></option>
<?php
}
?>
</select>
<?php
}
?>
<br>
<i class="material-icons prefix tiny">mode_edit</i><label>Werkproces naam:</label>
<input type="text" class="form-control" style="border-radius: 0;" name="werkproces_naam" placeholder="Werkproces">
<input type="submit" name="new_werkproces_naam" class="btn btn-success" value="Versturen" style="border-radius: 10;">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn btn-success ">Sluiten</a>
</form>
<?php
if (isset($_POST['new_werkproces_naam'])){
if (isset($_POST['kerntaak_option'])){
if (isset($_POST['werkproces_naam'])){
$kerntaak_id = $_POST['kerntaak_option'];
$werkproces_naam = $_POST['werkproces_naam'];
$add_werkproces_sql = "INSERT INTO werkproces(werkproces_naam, kerntaak_id) VALUES ('" . $werkproces_naam . "', '" . $kerntaak_id . "')";
echo "<meta http-equiv='refresh' content='0'>";
if ($conn->query($add_werkproces_sql) === TRUE) {
echo "Werkproces is toegevoegd";
} else {
echo "FOUTMELDING! Probeer opnieuw";
}
}
} else {
$error = 'Foutmelding, selecteer een kerntaak';
}
}
if (!empty($error)){
echo $error;
}
?>
<!--EINDE CODE VOOR WERKPROCES TOEVOEGEN BACKEND + KOPPELING NAAR KERNTAAK TOE -->
</div>
</div>