forked from AndersonGroupPHInternal/HROnline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
charts.php
43 lines (36 loc) · 1.09 KB
/
charts.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
<!DOCTYPE html>
<?php
//include ('connect.php');
$dbhandle = new mysqli('localhost','root','','hr_online_app_db4');
$query = "SELECT * FROM tbl_application";
$res = $dbhandle->query($query);
include ('reports.php');
?>
<html>
<head>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load("current", {packages:["corechart"]});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
['source'],
<?php
while ($row=$res->fetch_assoc()){
echo "['".$row['country']."'],";
}
?>
]);
var options = {
title: 'Visits from Countries',
pieHole: 0.2,
};
var chart = new google.visualization.PieChart(document.getElementById('donutchart'));
chart.draw(data, options);
}
</script>
</head>
<body>
//<div id="donutchart" style="width: 900px; height: 500px;"></div>
</body>
</html>