ohctech_p8/get_emp_program_data.php
2024-10-16 19:18:52 +05:30

12 lines
199 B
PHP

<?php
include('includes/config/config.php');
include('includes/functions.php');
$emp_id = $_POST['emp'];
if (!empty($emp_id)) {
$data = getWellnessProgram($emp_id);
}
echo json_encode($data);