=0 and YEAR(CURDATE())-year(doj)<2 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; //echo $query; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='0-2'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>=2 and YEAR(CURDATE())-year(doj)<5 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; //echo $query; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='2-5'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>=5 and YEAR(CURDATE())-year(doj)<10 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; echo $query; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='5-10'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>=10 and YEAR(CURDATE())-year(doj)<15 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='10-15'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>15 and YEAR(CURDATE())-year(doj)<=20 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='15-20'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>20 and YEAR(CURDATE())-year(doj)<=25 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; //echo $query; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='20-25'; $record[$i]['health_score'] =$row['health_score']; $i++; } } $query1="select id FROM employee where YEAR(CURDATE())-year(doj)>25 ".$qry_bu; $query="SELECT health_score from checkup_form where emp_id in ($query1)"; if (!$result = @mysqli_query($conn,$query)) { exit(mysqli_error($conn)); } if(mysqli_num_rows($result) > 0) { if ($row = mysqli_fetch_assoc($result)) { $record[$i]['key'] ='>25'; $record[$i]['health_score'] =$row['health_score']; $i++; } } echo json_encode($record); ?>