-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathreport.php
More file actions
63 lines (61 loc) · 1.85 KB
/
report.php
File metadata and controls
63 lines (61 loc) · 1.85 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php
session_start();
$userid = isset($_SESSION['userid'])?$_SESSION['userid']:0;
function formatDate($date){
$tmp = explode("-",$date);
$result = array_reverse($tmp);
return implode("/",$result);
}
function formatDate2($date){
$dateMonth = Array();
$dateMonth[0] = "";
$dateMonth[1] = "Januari";
$dateMonth[2] = "Februari";
$dateMonth[3] = "Maret";
$dateMonth[4] = "April";
$dateMonth[5] = "Mei";
$dateMonth[6] = "Juni";
$dateMonth[7] = "Juli";
$dateMonth[8] = "Agustus";
$dateMonth[9] = "September";
$dateMonth[10] = "Oktober";
$dateMonth[11] = "Nopember";
$dateMonth[12] = "Desember";
$tmp = explode("-",$date);
$month_number = $tmp[1];
$month_number = $month_number + 0;
$tmp[1] = $dateMonth[$month_number];
$result = array_reverse($tmp);
return implode(" ",$result);
}
function getYear($val){
$temp = explode('-', $val);
return $temp[0];
}
function addNull($val){
$tmp = $val;
if (is_numeric($val)){
$num = $val + 0;
if ($num <10)
$tmp = "0". $num;
}
return $tmp;
}
if ($userid){
include_once("config_sistem.php");
include_once("class/class.msDB.php");
include_once("class/class.grid.php");
include_once("class/class.handler.php");
$handler = new handler(true);
$id = isset($_GET['id'])?$_GET['id']:0;
if ($id){
$id = explode(".",$id);
$report = $handler->getReport($id[1]);
if ($report)
if (file_exists("app/report/$report")){
include_once 'app/config/config.db.php';
include_once("app/report/$report");
}
}
}
?>