-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboardnurse.php
153 lines (127 loc) · 3.46 KB
/
dashboardnurse.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
<?php
include 'connect.php';
session_start();
$query = $con->query("
SELECT tittle, COUNT(tittle) AS cnt
FROM `immunisation-details`
GROUP BY `tittle`
HAVING cnt > 0
");
foreach($query as $data)
{
$vaccine[] = $data['tittle'];
$children[] = $data['cnt'];
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="parents.css">
<link rel="stylesheet" href="https://fontawesome.com/">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Dashboard</title>
<style>
.chart-container {
width: 640px;
height: auto;
}
</style>
</head>
<body>
<div class="container-client">
<div class="side-bar">
<div class="logo">
<div class="logo-image">
<img src="images/jeremy-bezanger-TiktAywR5n8-unsplash.jpg" alt="">
</div>
<div class="logo-head">
<h4>Nuru</h4>
<div class="h-color">
<h4>-Health</h34>
</div>
</div>
</div>
<div class="childs-name">
<i class="fa fa-user-circle fa-2x" aria-hidden="true"></i>
<h4><?php if (isset($_SESSION['user_name'])) echo $_SESSION['user_name']; ?></h4>
<a href="logout.php">Logout</a>
</div>
<div class="main-menu">
<h4><i class="fa fa-lemon-o" aria-hidden="true"></i><a href="dashboardnurse.php"> Dashboard</a></h4>
<h4 class="fade">Main Menu</h4>
<h4><i class="fa fa-user-o" aria-hidden="true"></i><a href="nurse.php"> Parents</a></h4>
<h4><i class="fa fa-list-alt" aria-hidden="true"></i><a href="nurseimmunisation.php"> Immunisation Schedule</a></h4>
</div>
</div>
<div class="side2">
<div class="heading">
<div class="headp">
<h1>Vaccinations for <br> babies and children</h1>
</div>
<!-- <img src="images\julien-flutto-HPha3t0r4MU-unsplash.jpg" alt="" height="100px" width="100px">-->
</div>
<div class="chart-container">
<canvas id="myChart" ></canvas>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
const labels = <?php echo json_encode($vaccine) ?>;
const data = {
labels: labels,
datasets: [{
label: 'Immunisation',
data: <?php echo json_encode($children) ?>,
backgroundColor: [
'rgba(255, 99, 132, 1)',
'rgba(255, 159, 64, 1)',
'rgba(255, 205, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(54, 162, 235, 1)',
'rgba(153, 102, 255, 1)',
'rgba(201, 203, 207, 1)'
],
borderColor: [
'rgb(255, 99, 132)',
'rgb(255, 159, 64)',
'rgb(255, 205, 86)',
'rgb(75, 192, 192)',
'rgb(54, 162, 235)',
'rgb(153, 102, 255)',
'rgb(201, 203, 207)'
],
borderWidth: 1
}]
};
const config = {
type: 'bar',
data: data,
options: {
scales: {
x: {
grid:{
display: false
}
},
y: {
beginAtZero: true,
grid:{
display: false
}
}
}
},
};
</script>
<script>
const myChart = new Chart(
document.getElementById('myChart'),
config
);
</script>
</body>
</html>