ESH/select_checkup_list_mgmt.php
2024-10-23 18:28:06 +05:30

19 lines
425 B
PHP

<?php
error_reporting(E_ERROR | E_PARSE);
include('includes/config/config.php');
$data="";
$checkup_mgmt_id=$_REQUEST['checkup_mgmt_id'];
//echo $training_id;
if(!empty($checkup_mgmt_id)){
//update case
$query="select * from checkup_list_mgmt where checkup_mgmt_id='$checkup_mgmt_id='";
$result = @mysqli_query($conn,$query);
while($row=@mysqli_fetch_assoc($result)){
$data=$row;
}
}
echo json_encode($data);
?>