-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
113 lines (107 loc) · 2.93 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
require_once __DIR__ . '/vendor/autoload.php';
$defaultConfig = (new Mpdf\Config\ConfigVariables())->getDefaults();
$fontDirs = $defaultConfig['fontDir'];
$defaultFontConfig = (new Mpdf\Config\FontVariables())->getDefaults();
$fontData = $defaultFontConfig['fontdata'];
$mpdf = new \Mpdf\Mpdf([
'fontDir' => array_merge($fontDirs, [
__DIR__ . '/tmp',
]),
'fontdata' => $fontData + [
'sarabun' => [
'R' => 'THSarabunNew.ttf',
'I' => 'THSarabunNew Italic.ttf',
'B' => 'THSarabunNew Bold.ttf',
'BI'=> 'THSarabunNew BoldItalic.ttf'
]
],
'default_font' => 'sarabun'
]);
ob_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>รายงานผลการเรียนนักเรียนชั้น ป.1/10</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Sarabun&display=swap" rel="stylesheet">
<style>
body{
font-family: 'Sarabun', sans-serif;
}
</style>
</head>
<body>
<div class="container">
<h2 align="center">รายงานผลการเรียน</h2>
<table class="table table-striped">
<tr>
<th>เลขที่</th>
<th>ชื่อ</th>
<th>นามสกุล</th>
<th>เกรดเฉลี่ย</th>
</tr>
<tr>
<td>1</td>
<td>ลูพี่</td>
<td>หมวกฟาง</td>
<td>3.99</td>
</tr>
<tr>
<td>2</td>
<td>สุรสิทธิ์</td>
<td>รักเรียน</td>
<td>3.58</td>
</tr>
<tr>
<td>3</td>
<td>นายสมัคร</td>
<td>รักดี</td>
<td>3.65</td>
</tr>
<tr>
<td>4</td>
<td>นายกิตติ</td>
<td>ใฝ่ดี</td>
<td>3.30</td>
</tr>
<tr>
<td>5</td>
<td>นายจักรเพชร</td>
<td>ลุยสวน</td>
<td>3.65</td>
</tr>
<tr>
<td>6</td>
<td>นายดราก้อน</td>
<td>ลูกการ์ป</td>
<td>3.65</td>
</tr>
<tr>
<td>7</td>
<td>จ่าการ์ป</td>
<td>รักดี</td>
<td>3.21</td>
</tr>
<tr>
<td>8</td>
<td>นางสาวนามิ</td>
<td>รักดี</td>
<td>4.00</td>
</tr>
</table>
<p align="right">ครูที่ปรึกษา : <i>Kong RuksiamStudio</i></p>
<?php
$html=ob_get_contents();
$mpdf->WriteHTML($html);
$mpdf->Output("MyReport.pdf");
ob_end_flush();
?>
<a href="MyReport.pdf" class="btn btn-primary">โหลดผลการเรียน (pdf)</a>
</div>
</body>