462 lines
19 KiB
PHP
462 lines
19 KiB
PHP
<?php
|
|
include('includes/config/config.php');
|
|
include('includes/functions.php');
|
|
include('log_entry.php');
|
|
error_reporting(E_ERROR | E_PARSE);
|
|
|
|
$ohc_type = $_REQUEST['ohc_location'];
|
|
$patient_category = $_REQUEST['patient_category'];
|
|
$dept = $_REQUEST['dept'];
|
|
$emp_designation = $_REQUEST['emp_designation'];
|
|
$emp_cadre = $_REQUEST['emp_cadre'];
|
|
$employer_contractor = $_REQUEST['employer_contractor'];
|
|
$gender = $_REQUEST['gender'];
|
|
$start_date = $_REQUEST['startDate'];
|
|
$end_date = $_REQUEST['endDate'];
|
|
$year = implode(',', $_REQUEST['year']);
|
|
$month = implode(',', $_REQUEST['month']);
|
|
|
|
$year2 = implode(',', $_REQUEST['year']);
|
|
|
|
$year1 = explode(',', $year);
|
|
// $year1 = array(2020,2021);
|
|
|
|
|
|
error_log("values::" . $ohc_location . " " . $patient_category . " " . $dept . " " . $emp_designation . " " . $emp_cadre . " " . $employer_contractor . " " . $gender . " " . $start_date . " " . $end_date . " " . $year . " " . $month);
|
|
|
|
|
|
|
|
$qry_filter = "";
|
|
|
|
if (isset($dept) && $dept != '') {
|
|
$qry_filter .= " and dept_id ='" . $dept . "' ";
|
|
}
|
|
|
|
|
|
if (isset($ohc_type) && $ohc_type != '') {
|
|
$qry_filter .= " and ohc_type_id ='" . $ohc_type . "' ";
|
|
}
|
|
|
|
if (isset($gender) && $gender != '') {
|
|
$qry_filter .= " and gender ='" . $gender . "' ";
|
|
}
|
|
|
|
if (isset($patient_category) && $patient_category != '') {
|
|
$qry_filter .= " and emp_cat_id ='" . $patient_category . "' ";
|
|
}
|
|
|
|
if (isset($emp_designation) && $emp_designation != '') {
|
|
$qry_filter .= " and designation_id ='" . $emp_designation . "' ";
|
|
}
|
|
|
|
if (isset($emp_cadre) && $emp_cadre != '') {
|
|
$qry_filter .= " and emp_cadre ='" . $emp_cadre . "' ";
|
|
}
|
|
|
|
if (isset($employer_contractor) && $employer_contractor != '') {
|
|
$qry_filter .= " and employer_contractor_id ='" . $employer_contractor . "' ";
|
|
}
|
|
|
|
if (isset($start_date) && $start_date != '') {
|
|
$qry_date1 .= " and date(medical_entry_date) >=str_to_date('" . $start_date . "','%d-%m-%Y') ";
|
|
}
|
|
if (isset($end_date) && $end_date != '') {
|
|
$qry_date1 .= " and date(medical_entry_date) <=str_to_date('" . $end_date . "','%d-%m-%Y') ";
|
|
}
|
|
|
|
if (isset($month) && $month != '') {
|
|
$qry_date1 .= " and month(medical_entry_date) in (" . $month . ")";
|
|
}
|
|
|
|
|
|
$data = array();
|
|
|
|
if (isset($year) && $year != '' && sizeof($year1) > 1) {
|
|
|
|
for ($j = 0; $j < sizeof($year1); $j++) {
|
|
|
|
error_log("year:" . $year1[$j] . " size:" . sizeof($year1));
|
|
$qry_date = "";
|
|
$qry_doj = "";
|
|
|
|
$qry_date .= "and year(medical_entry_date) ='" . $year1[$j] . "'";
|
|
$qry_doj.= "and year(doj) <= '".$year1[$j]."'";
|
|
$total_smoking_pat = 0;
|
|
$total = 0;
|
|
|
|
$pat_query = "SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj";
|
|
|
|
$pat_result = mysqli_query($conn, $pat_query);
|
|
if (mysqli_num_rows($pat_result)) {
|
|
$total = mysqli_num_rows($pat_result);
|
|
} else {
|
|
$total = 0;
|
|
}
|
|
|
|
$per_for_smoking = 0;
|
|
$count_smoking = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and smoking='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking:" . $count_smoking);
|
|
$smoking_result = mysqli_query($conn, $count_smoking);
|
|
|
|
if (mysqli_num_rows($smoking_result)) {
|
|
$total_smoking_pat = mysqli_num_rows($smoking_result);
|
|
} else {
|
|
$total_smoking_pat = 0;
|
|
}
|
|
|
|
if ($total_smoking_pat == 0 || $total == 0) {
|
|
$data['smoking'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_smoking = ($total_smoking_pat / $total) * 100;
|
|
$data['smoking'][$year1[$j]]['total'] = round($per_for_smoking, 2);
|
|
}
|
|
|
|
|
|
|
|
//for tobacco
|
|
|
|
$total_tobacco_pat = 0;
|
|
$per_for_tobacco = 0;
|
|
$count_tobacco = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and tobacco='1' GROUP by patient_id";
|
|
|
|
error_log("count tobacco:" . $count_tobacco);
|
|
$tobacco_result = mysqli_query($conn, $count_tobacco);
|
|
if (mysqli_num_rows($tobacco_result)) {
|
|
$total_tobacco_pat = mysqli_num_rows($tobacco_result);
|
|
} else {
|
|
$total_tobacco_pat = 0;
|
|
}
|
|
|
|
if ($total_tobacco_pat == 0 || $total == 0) {
|
|
$data['tobacco'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_tobacco = ($total_tobacco_pat / $total) * 100;
|
|
$data['tobacco'][$year1[$j]]['total'] = round($per_for_tobacco, 2);
|
|
}
|
|
|
|
//for alcohol
|
|
$total_alcohol_pat = 0;
|
|
|
|
$per_for_alcohol = 0;
|
|
$count_alcohol = "SELECT max(medical_exam_id),patient_id,alcohol from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count alcohol:" . $count_alcohol);
|
|
$alcohol_result = mysqli_query($conn, $count_alcohol);
|
|
if (mysqli_num_rows($alcohol_result)) {
|
|
$total_alcohol_pat = mysqli_num_rows($alcohol_result);
|
|
} else {
|
|
$total_alcohol_pat = 0;
|
|
}
|
|
|
|
if ($total_alcohol_pat == 0 || $total == 0) {
|
|
$data['alcohol'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_alcohol = ($total_alcohol_pat / $total) * 100;
|
|
$data['alcohol'][$year1[$j]]['total'] = round($per_for_alcohol, 2);
|
|
}
|
|
|
|
//for smoking+tobacco
|
|
$total_smoking_tobacco_pat = 0;
|
|
$per_for_smoking_tobacco = 0;
|
|
$count_smoking_tobacco = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and smoking='1' and tobacco='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_tobacco:" . $count_smoking_tobacco);
|
|
$smoking_tobacco_result = mysqli_query($conn, $count_smoking_tobacco);
|
|
if (mysqli_num_rows($smoking_tobacco_result)) {
|
|
$total_smoking_tobacco_pat = mysqli_num_rows($smoking_tobacco_result);
|
|
} else {
|
|
$total_smoking_tobacco_pat = 0;
|
|
}
|
|
|
|
if ($total_smoking_tobacco_pat == 0 || $total == 0) {
|
|
$data['smoking+tobacco'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_tobacco = ($total_smoking_tobacco_pat / $total) * 100;
|
|
$data['smoking+tobacco'][$year1[$j]]['total'] = round($per_for_smoking_tobacco, 2);
|
|
}
|
|
|
|
|
|
//for alcohol+smoking
|
|
$total_smoking_alcohol_pat = 0;
|
|
$per_for_smoking_alcohol = 0;
|
|
$count_smoking_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and smoking='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_alcohol:" . $count_smoking_alcohol);
|
|
$smoking_alcohol_result = mysqli_query($conn, $count_smoking_alcohol);
|
|
if (mysqli_num_rows($smoking_alcohol_result)) {
|
|
$total_smoking_alcohol_pat = mysqli_num_rows($smoking_alcohol_result);
|
|
} else {
|
|
$total_smoking_alcohol_pat = 0;
|
|
}
|
|
|
|
if ($total_smoking_alcohol_pat == 0 || $total == 0) {
|
|
$data['smoking+alcohol'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_alcohol = ($total_smoking_alcohol_pat / $total) * 100;
|
|
$data['smoking+alcohol'][$year1[$j]]['total'] = round($per_for_smoking_alcohol, 2);
|
|
}
|
|
|
|
//for alcohol+tobacco
|
|
$total_tobacco_alcohol_pat = 0;
|
|
$per_for_tobacco_alcohol = 0;
|
|
$count_tobacco_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and tobacco='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count tobacco_alcohol:" . $count_tobacco_alcohol);
|
|
$tobacco_alcohol_result = mysqli_query($conn, $count_tobacco_alcohol);
|
|
if (mysqli_num_rows($tobacco_alcohol_result)) {
|
|
$total_tobacco_alcohol_pat = mysqli_num_rows($tobacco_alcohol_result);
|
|
} else {
|
|
$total_tobacco_alcohol_pat = 0;
|
|
}
|
|
|
|
if ($total_tobacco_alcohol_pat == 0 || $total == 0) {
|
|
$data['tobacco+alcohol'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_tobacco_alcohol = ($total_tobacco_alcohol_pat / $total) * 100;
|
|
$data['tobacco+alcohol'][$year1[$j]]['total'] = round($per_for_tobacco_alcohol, 2);
|
|
}
|
|
|
|
//for smoking+alcohol+tobacco
|
|
$total_smoking_tobacco_alcohol_pat = 0;
|
|
$per_for_smoking_tobacco_alcohol = 0;
|
|
$count_smoking_tobacco_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and smoking='1' and tobacco='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_tobacco_alcohol:" . $count_smoking_tobacco_alcohol);
|
|
$smoking_tobacco_alcohol_result = mysqli_query($conn, $count_smoking_tobacco_alcohol);
|
|
if (mysqli_num_rows($smoking_tobacco_alcohol_result)) {
|
|
$total_smoking_tobacco_alcohol_pat = mysqli_num_rows($smoking_tobacco_alcohol_result);
|
|
} else {
|
|
$total_smoking_tobacco_alcohol_pat = 0;
|
|
}
|
|
|
|
|
|
if ($total_smoking_tobacco_alcohol_pat == 0 || $total == 0) {
|
|
$data['smoking+tobacco+alcohol'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_tobacco_alcohol = ($total_smoking_tobacco_alcohol_pat / $total) * 100;
|
|
$data['smoking+tobacco+alcohol'][$year1[$j]]['total'] = round($per_for_smoking_tobacco_alcohol, 2);
|
|
}
|
|
|
|
//for none
|
|
$total_none_pat = 0;
|
|
$per_for_none = 0;
|
|
$count_none = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter $qry_doj) $qry_date1 $qry_date and smoking!='1' and tobacco!='1' and alcohol!='1' GROUP by patient_id";
|
|
|
|
error_log("count none:" . $count_none);
|
|
$none_result = mysqli_query($conn, $count_none);
|
|
if (mysqli_num_rows($none_result)) {
|
|
$total_none_pat = mysqli_num_rows($none_result);
|
|
} else {
|
|
$total_none_pat = 0;
|
|
}
|
|
|
|
if ($total_none_pat == 0 || $total == 0) {
|
|
$data['none'][$year1[$j]]['total'] = 0.00;
|
|
} else {
|
|
$per_for_none = ($total_none_pat / $total) * 100;
|
|
$data['none'][$year1[$j]]['total'] = round($per_for_none, 2);
|
|
}
|
|
}
|
|
} else {
|
|
if (isset($year2) && $year2 != '') {
|
|
$qry_date1 .= " and year(medical_entry_date) ='" . $year2 . "'";
|
|
$qry_filter.= " and year(doj) <= '".$year2."'";
|
|
}
|
|
|
|
//for smoking
|
|
|
|
$total_smoking_pat = 0;
|
|
$total = 0;
|
|
|
|
$pat_query = "SELECT id FROM patient_master where status='Active' $qry_filter";
|
|
|
|
$pat_result = mysqli_query($conn, $pat_query);
|
|
if (mysqli_num_rows($pat_result)) {
|
|
$total = mysqli_num_rows($pat_result);
|
|
} else {
|
|
$total = 0;
|
|
}
|
|
|
|
$per_for_smoking = 0;
|
|
$count_smoking = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and smoking='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking:" . $count_smoking);
|
|
$smoking_result = mysqli_query($conn, $count_smoking);
|
|
|
|
if (mysqli_num_rows($smoking_result)) {
|
|
$total_smoking_pat = mysqli_num_rows($smoking_result);
|
|
} else {
|
|
$total_smoking_pat = 0;
|
|
}
|
|
|
|
$data['smoking']['total'] = $total_smoking_pat;
|
|
$data['smoking']['gtotal'] = $total;
|
|
if ($total_smoking_pat == 0 || $total == 0) {
|
|
$data['smoking']['per'] = 0.00;
|
|
} else {
|
|
$per_for_smoking = ($total_smoking_pat / $total) * 100;
|
|
$data['smoking']['per'] = round($per_for_smoking, 2);
|
|
}
|
|
|
|
|
|
|
|
//for tobacco
|
|
|
|
$total_tobacco_pat = 0;
|
|
$per_for_tobacco = 0;
|
|
$count_tobacco = "SELECT max(medical_exam_id),patient_id,tobacco from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and tobacco='1' GROUP by patient_id";
|
|
|
|
error_log("count tobacco:" . $count_tobacco);
|
|
$tobacco_result = mysqli_query($conn, $count_tobacco);
|
|
if (mysqli_num_rows($tobacco_result)) {
|
|
$total_tobacco_pat = mysqli_num_rows($tobacco_result);
|
|
} else {
|
|
$total_tobacco_pat = 0;
|
|
}
|
|
|
|
$data['tobacco']['total'] = $total_tobacco_pat;
|
|
$data['tobacco']['gtotal'] = $total;
|
|
if ($total_tobacco_pat == 0 || $total == 0) {
|
|
$data['tobacco']['per'] = 0.00;
|
|
} else {
|
|
$per_for_tobacco = ($total_tobacco_pat / $total) * 100;
|
|
$data['tobacco']['per'] = round($per_for_tobacco, 2);
|
|
}
|
|
|
|
//for alcohol
|
|
$total_alcohol_pat = 0;
|
|
|
|
$per_for_alcohol = 0;
|
|
$count_alcohol = "SELECT max(medical_exam_id),patient_id,alcohol from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count alcohol:" . $count_alcohol);
|
|
$alcohol_result = mysqli_query($conn, $count_alcohol);
|
|
if (mysqli_num_rows($alcohol_result)) {
|
|
$total_alcohol_pat = mysqli_num_rows($alcohol_result);
|
|
} else {
|
|
$total_alcohol_pat = 0;
|
|
}
|
|
|
|
$data['alcohol']['total'] = $total_alcohol_pat;
|
|
$data['alcohol']['gtotal'] = $total;
|
|
if ($total_alcohol_pat == 0 || $total == 0) {
|
|
$data['alcohol']['per'] = 0.00;
|
|
} else {
|
|
$per_for_alcohol = ($total_alcohol_pat / $total) * 100;
|
|
$data['alcohol']['per'] = round($per_for_alcohol, 2);
|
|
}
|
|
|
|
//for smoking+tobacco
|
|
$total_smoking_tobacco_pat = 0;
|
|
$per_for_smoking_tobacco = 0;
|
|
$count_smoking_tobacco = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and smoking='1' and tobacco='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_tobacco:" . $count_smoking_tobacco);
|
|
$smoking_tobacco_result = mysqli_query($conn, $count_smoking_tobacco);
|
|
if (mysqli_num_rows($smoking_tobacco_result)) {
|
|
$total_smoking_tobacco_pat = mysqli_num_rows($smoking_tobacco_result);
|
|
} else {
|
|
$total_smoking_tobacco_pat = 0;
|
|
}
|
|
|
|
$data['smoking_tobacco']['total'] = $total_smoking_tobacco_pat;
|
|
$data['smoking_tobacco']['gtotal'] = $total;
|
|
if ($total_smoking_tobacco_pat == 0 || $total == 0) {
|
|
$data['smoking_tobacco']['per'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_tobacco = ($total_smoking_tobacco_pat / $total) * 100;
|
|
$data['smoking_tobacco']['per'] = round($per_for_smoking_tobacco, 2);
|
|
}
|
|
|
|
|
|
//for alcohol+smoking
|
|
$total_smoking_alcohol_pat = 0;
|
|
$per_for_smoking_alcohol = 0;
|
|
$count_smoking_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and smoking='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_alcohol:" . $count_smoking_alcohol);
|
|
$smoking_alcohol_result = mysqli_query($conn, $count_smoking_alcohol);
|
|
if (mysqli_num_rows($smoking_alcohol_result)) {
|
|
$total_smoking_alcohol_pat = mysqli_num_rows($smoking_alcohol_result);
|
|
} else {
|
|
$total_smoking_alcohol_pat = 0;
|
|
}
|
|
|
|
$data['smoking_alcohol']['total'] = $total_smoking_alcohol_pat;
|
|
$data['smoking_alcohol']['gtotal'] = $total;
|
|
if ($total_smoking_alcohol_pat == 0 || $total == 0) {
|
|
$data['smoking_alcohol']['per'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_alcohol = ($total_smoking_alcohol_pat / $total) * 100;
|
|
$data['smoking_alcohol']['per'] = round($per_for_smoking_alcohol, 2);
|
|
}
|
|
|
|
//for alcohol+tobacco
|
|
$total_tobacco_alcohol_pat = 0;
|
|
$per_for_tobacco_alcohol = 0;
|
|
$count_tobacco_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and tobacco='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count tobacco_alcohol:" . $count_tobacco_alcohol);
|
|
$tobacco_alcohol_result = mysqli_query($conn, $count_tobacco_alcohol);
|
|
if (mysqli_num_rows($tobacco_alcohol_result)) {
|
|
$total_tobacco_alcohol_pat = mysqli_num_rows($tobacco_alcohol_result);
|
|
} else {
|
|
$total_tobacco_alcohol_pat = 0;
|
|
}
|
|
|
|
$data['tobacco_alcohol']['total'] = $total_tobacco_alcohol_pat;
|
|
$data['tobacco_alcohol']['gtotal'] = $total;
|
|
if ($total_tobacco_alcohol_pat == 0 || $total == 0) {
|
|
$data['tobacco_alcohol']['per'] = 0.00;
|
|
} else {
|
|
$per_for_tobacco_alcohol = ($total_tobacco_alcohol_pat / $total) * 100;
|
|
$data['tobacco_alcohol']['per'] = round($per_for_tobacco_alcohol, 2);
|
|
}
|
|
|
|
//for smoking+alcohol+tobacco
|
|
$total_smoking_tobacco_alcohol_pat = 0;
|
|
$per_for_smoking_tobacco_alcohol = 0;
|
|
$count_smoking_tobacco_alcohol = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and smoking='1' and tobacco='1' and alcohol='1' GROUP by patient_id";
|
|
|
|
error_log("count smoking_tobacco_alcohol:" . $count_smoking_tobacco_alcohol);
|
|
$smoking_tobacco_alcohol_result = mysqli_query($conn, $count_smoking_tobacco_alcohol);
|
|
if (mysqli_num_rows($smoking_tobacco_alcohol_result)) {
|
|
$total_smoking_tobacco_alcohol_pat = mysqli_num_rows($smoking_tobacco_alcohol_result);
|
|
} else {
|
|
$total_smoking_tobacco_alcohol_pat = 0;
|
|
}
|
|
|
|
$data['smoking_tobacco_alcohol']['total'] = $total_smoking_tobacco_alcohol_pat;
|
|
$data['smoking_tobacco_alcohol']['gtotal'] = $total;
|
|
if ($total_smoking_tobacco_alcohol_pat == 0 || $total == 0) {
|
|
$data['smoking_tobacco_alcohol']['per'] = 0.00;
|
|
} else {
|
|
$per_for_smoking_tobacco_alcohol = ($total_smoking_tobacco_alcohol_pat / $total) * 100;
|
|
$data['smoking_tobacco_alcohol']['per'] = round($per_for_smoking_tobacco_alcohol, 2);
|
|
}
|
|
|
|
//for none
|
|
$total_none_pat = 0;
|
|
$per_for_none = 0;
|
|
$count_none = "SELECT max(medical_exam_id),patient_id,smoking from medical_examination where patient_id in (SELECT id FROM patient_master where status='Active' $qry_filter) $qry_date1 and smoking!='1' and tobacco!='1' and alcohol!='1' GROUP by patient_id";
|
|
|
|
error_log("count none:" . $count_none);
|
|
$none_result = mysqli_query($conn, $count_none);
|
|
if (mysqli_num_rows($none_result)) {
|
|
$total_none_pat = mysqli_num_rows($none_result);
|
|
} else {
|
|
$total_none_pat = 0;
|
|
}
|
|
|
|
$data['none']['total'] = $total_none_pat;
|
|
$data['none']['gtotal'] = $total;
|
|
if ($total_none_pat == 0 || $total == 0) {
|
|
$data['none']['per'] = 0.00;
|
|
} else {
|
|
$per_for_none = ($total_none_pat / $total) * 100;
|
|
$data['none']['per'] = round($per_for_none, 2);
|
|
}
|
|
}
|
|
echo json_encode($data);
|