-
Notifications
You must be signed in to change notification settings - Fork 1
/
ModalAddKlas.php
57 lines (55 loc) · 2.27 KB
/
ModalAddKlas.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
<div id="ModalAddKlas" class="modal">
<div class="modal-header" style="padding-left: 24px;">
<h5>Klas toevoegen</h5>
</div>
<div class="modal-content">
<!-- CODE VOOR KLAS TOEVOEGEN BACK-END -->
<form method="POST">
<?php
$error = '';
$get_cohort = "SELECT * FROM cohort";
$result_cohort = $conn->query($get_cohort);
if ($result_cohort->num_rows > 0) {
?>
<select name="cohort_option" required>
<option selected="selected" disabled>Kies een Cohort</option>
<?php
while ($row_cohort = $result_cohort->fetch_assoc()) {
?>
<option value="<?php echo $row_cohort["cohort_id"] ?>"><?php echo $row_cohort["cohort_jaar"] ?></option>
<?php
}
?>
</select>
<?php
}
?>
<input type="text" class="form-control" style="border-radius: 0;" name="klas_naam" placeholder="Klas" required>
<br>
<input type="submit" name="new_klas_submit" class="btn btn-success" value="Versturen" style="border-radius: 0;">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn btn-success ">Sluiten</a>
</form>
<?php
if (isset($_POST['new_klas_submit'])) {
if (isset($_POST['cohort_option'])) {
if (isset($_POST['klas_naam'])) {
$cohort_id = $_POST['cohort_option'];
$klas_naam = $_POST['klas_naam'];
$add_klas_sql = "INSERT INTO klas(klas_naam, cohort_id) VALUES ('" . $klas_naam . "', '" . $cohort_id . "')";
if ($conn->query($add_klas_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 KLAS TOEVOEGEN BACKEND -->
</div>
</div>