-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPDF.php
More file actions
51 lines (41 loc) · 2.01 KB
/
Copy pathPDF.php
File metadata and controls
51 lines (41 loc) · 2.01 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
<?php
require_once('./codebase/thirdparty/mpdf60/mpdf.php');
$mpdf = new mPDF();
$mpdf->WriteHTML('<body>
<style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg .tg-0ord{text-align:right}
.tg .tg-s6z2{text-align:center}
.tg .tg-6iqf{font-size:16px;font-family:Arial, Helvetica, sans-serif !important;;text-align:center}
.tg .tg-huh2{font-size:14px;text-align:center}
</style>
<table class="tg">
<tr>
<th class="tg-031e" rowspan="5">Barc</th>
<th class="tg-6iqf" colspan="4">CAUTION - RADIOISOTOPE</th>
</tr>
<tr>
<td class="tg-huh2" colspan="4">Technetium Generator</td>
</tr>
<tr>
<td class="tg-0ord" colspan="2">Arrival Date:</td>
<td class="tg-s6z2" colspan="2">25/05/2015</td>
</tr>
<tr>
<td class="tg-0ord" colspan="2">Batch Number:</td>
<td class="tg-031e" colspan="2">1234565</td>
</tr>
<tr>
<td class="tg-031e"></td>
<td class="tg-031e"></td>
<td class="tg-031e"></td>
<td class="tg-031e"></td>
</tr>
</table>
</body>'
);
$mpdf->Output();
exit;
?>