-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubmitted.php
More file actions
30 lines (27 loc) · 957 Bytes
/
submitted.php
File metadata and controls
30 lines (27 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
include_once "config.php";
$PAGE="submitted";
include_once "includes/header.php";
$kpi = optional_param('kpi','submitted',PARAM_TEXT);
if ($kpi == "submitted"){
$viewopts = array('height'=>500,'width'=>800,'class'=>'graph','comparison'=>true);
$opts = array('months'=>6);
include_once "includes/kpi/submitted.php";
}
if ($kpi == "anc1defaulters"){
$viewopts = array('height'=>500,'width'=>800,'class'=>'graph','comparison'=>true);
$opts = array('months'=>6);
include_once "includes/kpi/anc1defaulters.php";
}
if ($kpi == "anc2defaulters"){
$viewopts = array('height'=>500,'width'=>800,'class'=>'graph','comparison'=>true);
$opts = array('months'=>6);
include_once "includes/kpi/anc2defaulters.php";
}
if ($kpi == "pnc1defaulters"){
$viewopts = array('height'=>500,'width'=>800,'class'=>'graph','comparison'=>true);
$opts = array('months'=>6);
include_once "includes/kpi/pnc1defaulters.php";
}
include_once "includes/footer.php";
?>