ESH/get_emp_program_data.php
2024-10-23 18:28:06 +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);