-
Notifications
You must be signed in to change notification settings - Fork 0
/
formlar-student.php
205 lines (162 loc) · 6.1 KB
/
formlar-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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<?php
session_start();
$base_url = 'http://' . $_SERVER['HTTP_HOST'] . '/Hacettepe-KDSE-BPYS';
if (!isset($_SESSION['userlogin'])) {
header("Location: login-student.php");
}
if (isset($_GET['logout'])) {
session_destroy();
unset($_SESSION);
header("Location: main.php");
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>KDSE-BPYS</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Favicon -->
<link href="img/favicon.ico" rel="icon">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet">
<!-- Libraries Stylesheet -->
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="lib/tempusdominus/css/tempusdominus-bootstrap-4.min.css" rel="stylesheet" />
<!-- Customized Bootstrap Stylesheet -->
<link href="bootstrap.min.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link href="style.css" rel="stylesheet">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-select.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap-select.min.js"></script>
</head>
<body style="background-color:white">
<div class="container-fluid pt-4 px-4">
<?php
require_once('config-students.php');
$userid = $_SESSION['userlogin']['id'];
//echo $userid;
$sql = "SELECT * FROM patients WHERE id =" . $userid;
$smtmselect = $db->prepare($sql);
$result = $smtmselect->execute();
if ($result) {
$values = $smtmselect->fetchAll(PDO::FETCH_ASSOC);
} else {
echo 'error';
}
$sql = "SELECT * FROM form2";
$smtmselect = $db->prepare($sql);
$result = $smtmselect->execute();
if ($result) {
$form2 = $smtmselect->fetchAll(PDO::FETCH_ASSOC);
} else {
echo 'error';
}
?>
</div>
<div class="new-form-wrapper">
<div class="new-form" id="newform">
<p class="new-form-p">Yeni Form Doldur</p>
</div>
<div class="patients-table text-center rounded p-4" id="patients-table">
<div class="d-flex align-items-center justify-content-between mb-4">
<h6 class="mb-0 darkcyan table-title">Hasta Listesi / Öneriler</h6>
</div>
<div class="table-responsive">
<table class="table text-start align-middle table-bordered table-hover mb-0">
<thead>
<tr class="white darkcyan table-head">
<th scope="col">Adı</th>
<th scope="col">Soyadı</th>
<th scope="col">Detay</th>
</tr>
</thead>
<tbody>
<?php
require('formupdate.php');
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<script>
$(function() {
$.ajaxSetup({
cache: false
}); // disable caching for all requests.
// RAW Text/Html data from a file
$("#newform").on("click", function(e) {
console.log("aascaa");
e.preventDefault();
$("#content").load("form-navigation.php");
})
//$("#content").load("form-navigation.php");
$(function() {
$("a.form-items").on("click", function(e) {
e.preventDefault();
$("#content").load(this.href);
})
})
});
</script>
<script>
$(function() {
$('#submit').click(function(e) {
var valid = this.form.checkValidity();
if (valid) {
var id = <?php
$userid = $_SESSION['userlogin']['id'];
echo $userid
?>;
var name = $('#name').val();
var surname = $('#surname').val();
var age = $('#age').val();
var not = $('#not').val();
e.preventDefault()
$.ajax({
type: 'POST',
url: 'student-patient.php',
data: {
id: id,
name: name,
surname: surname,
age: age,
not: not
},
success: function(data) {
alert("Başarılı");
location.reload(true)
},
error: function(data) {
Swal.fire({
'title': 'Errors',
'text': 'There were errors',
'type': 'error'
})
}
})
}
})
});
</script>
<!-- JavaScript Libraries -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="lib/chart/chart.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/tempusdominus/js/moment.min.js"></script>
<script src="lib/tempusdominus/js/moment-timezone.min.js"></script>
<script src="lib/tempusdominus/js/tempusdominus-bootstrap-4.min.js"></script>
<!-- Template Javascript -->
</body>
</html>