19 lines
425 B
PHP
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);
|
|
|
|
|
|
?>
|