29 lines
876 B
PHP
29 lines
876 B
PHP
<?php
|
|
include ('includes/config/config.php');
|
|
include ('log_entry.php');
|
|
include ('includes/functions.php');
|
|
$from_date = $_REQUEST['from_date'];
|
|
$to_date = $_REQUEST['to_date'];
|
|
$freq_name = $_REQUEST['freq_name'];
|
|
$task_type = $_REQUEST['task_type'];
|
|
|
|
$query = "select * from task_master where ohc_type = '" . $_SESSION['current_ohcttype'] . "' and frequency='" . $freq_name . "' and task_header_id = '" . $task_type . "'";
|
|
//echo $query ;
|
|
error_log("query for task from to date: " . $query);
|
|
if (!$result = @mysqli_query($conn, $query)) {
|
|
die(mysqli_error($conn));
|
|
}
|
|
$data = [];
|
|
if (mysqli_num_rows($result) > 0) {
|
|
while ($row = @mysqli_fetch_assoc($result)) {
|
|
$data[] = $row;
|
|
}
|
|
} else {
|
|
$data['status'] = 200;
|
|
$data['message'] = "Data not found!";
|
|
error_log($data['message']);
|
|
}
|
|
|
|
error_log(print_r($data, true));
|
|
echo json_encode($data);
|
|
?>
|