12 lines
199 B
PHP
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);
|