4 Einträge, 1 Seite |
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
<?php
session_start();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<?php
<table width="680" height="869" cellspacing="10">
<tr>
<td width="480" height="250" colspan='3' >
<h2><br><br>Personen</h2><br><br><br><br></td>
<td width="200" align='right' valign="middle">
<div id='Foto'><img src=<? echo $_SESSION['bild']; ?> </div></td>
</tr>
<tr>
<td width='250'>
<font size='3'>Name:</font> </td>
<td class="box" colspan='3'>
<div align="center"><font size='4'><? echo $_SESSION['name']; ?></font> </div></td>
</tr>
<tr>
<td>
<font size='3'>Bei Abteilung:</font> </td>
<td class="box" width='200'>
<div align="center"><font size='4' class="box"><? echo $_SESSION['abteilung']; ?></font> </div></td>
</tr>
<tr>
<td>
<font size='3'>Funktion:</font> </td>
<td class="box" colspan='3'>
<div align="center"><font size='4'><? echo ((strlen($_SESSION['funktion'])==0)?' ':$_SESSION['funktion']); ?></font> </div></td>
</tr>
<tr>
<td>
<font size='3'>Status:</font> </td>
<td class="box" colspan='3'>
<div align="center"><font size='4'><? echo $_SESSION['status']; ?></font> </div></td>
</tr>
<tr>
<td height="25" colspan='4'>
</tr>
<tr>
<td height="25" colspan='4'>
</tr>
<tr>
<td height="75" colspan='7' > <span class="Stil7">Bemerkung:</span> </td>
</tr>
<tr>
<td height="45" colspan='5' class='box'>
<font size='4' class="box"><? echo ((strlen($_SESSION['bemerkung'])==0)?' ':$_SESSION['bemerkung']); ?></font> </td>
</tr>
</table>
<p>
<?
echo "<script LANGUAGE='JavaScript'>
setTimeout('self.close();', 1);
</script> ";
}
?>
</p>
<p> </p>
<p> </p>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
<?php
require('fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World !');
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="mein.pdf"');
$pdf->Output();
4 Einträge, 1 Seite |