-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_student.php
72 lines (68 loc) · 2.52 KB
/
add_student.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
<?php
$title = '«Προσθήκη Εκπαιδευομένου ΣΠΗΥ»';
include('templates/header.inc.php');
check_session();
if ($_SESSION['username'] == "diaxstis") {
?>
<h2>Προσθήκη Εκπαιδευομένου ΣΠΗΥ</h2>
<p>Προσθέστε έναν εκπαιδευόμενο</p>
<?php
require_once('includes/mysqli_connect.php');
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$errors = [];
if (empty($_POST['grade'])) {
$vathmos = NULL;
$errors[] = 'Παρακαλώ επιλέξτε βαθμό';
} else {
$vathmos = $_POST['grade'];
}
if (empty($_POST['spec'])) {
$spec = NULL;
$errors[] = 'Παρακαλώ επιλέξτε ειδικότητα';
} else {
$spec = $_POST['spec'];
}
if (!($surname = filter_input(INPUT_POST, 'surname', FILTER_SANITIZE_STRING))) {
$surname = NULL;
$errors[] = 'Παρακαλώ εισάγετε επώνυμο';
}
if (!($name = filter_input(INPUT_POST, 'name', FILTER_SANITIZE_STRING))) {
$name = NULL;
$errors[] = 'Παρακαλώ εισάγετε όνομα';
}
if (empty($_POST['seira'])) {
$seira = NULL;
$errors[] = 'Παρακαλώ επιλέξτε σειρά';
} else {
$seira = $_POST['seira'];
}
if (!empty($errors)) {
print_error_messages($errors);
} else {
$query = "INSERT INTO students (id_vathmoi, id_specialization, students_surname, students_name, id_seires, stud_deleted) VALUES (?, ?, ?, ?, ?, 0)";
$stmt = my_mysqli_prepare($dbc, $query);
my_mysqli_stmt_bind_param($stmt, 'iissi', $vathmos, $spec, $surname, $name, $seira);
my_mysqli_stmt_execute($stmt);
if (my_mysqli_stmt_affected_rows($stmt) == 1) {
print "<p class='alert alert-success'>Ο μαθητής εισήχθη <strong>επιτυχώς!</strong></p>\n";
} else {
print "<p class='alert alert-warning'>Ο μαθητής <strong>ΔΕΝ</strong> εισήχθη!</p>\n";
print_system_error();
}
mysqli_stmt_close($stmt);
}
}
print_add_student_form($dbc);
mysqli_close($dbc);
include('templates/footer.inc.php');
?>
</body>
</html>
<?php
ob_end_flush(); // Αποστολή του buffer στον browser και απενεργοποίηση output buffering
} else {
$title = 'Σφάλμα πρόσβασης';
print "<p>Δεν έχετε δικαίωμα πρόσβασης σε αυτή τη σελίδα.";
include('templates/footer.inc.php');
}
?>