-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcetak.php
47 lines (39 loc) · 865 Bytes
/
cetak.php
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
<?php include 'functions.php'; ?>
<!doctype html>
<html>
<head>
<title>Cetak Laporan</title>
<style>
body {
font-family: Verdana;
font-size: 13px;
}
h1 {
font-size: 14px;
border-bottom: 4px double #000;
padding: 3px 0;
}
table {
border-collapse: collapse;
margin-bottom: 10px;
}
td,
th {
border: 1px solid #000;
padding: 3px;
}
.wrapper {
margin: 0 auto;
width: 980px;
}
</style>
</head>
<body onload="window.print()">
<div class="wrapper">
<?php
if (is_file($mod . '_cetak.php'))
include $mod . '_cetak.php';
?>
</div>
</body>
</html>