-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcetak2.php
115 lines (93 loc) · 2.87 KB
/
cetak2.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
114
115
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<link rel="icon" type="image/gif" href="images/favicon.gif" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sistem Pakar identifikasi golongan Anak Yang Disebabkan Infeksi Virus</title>
<link href="templatemo_style.css" rel="stylesheet" type="text/css" />
<?php include("library.php"); include("koneksi_db.php");?>
</head>
<body onLoad="javascript: window.print()">
<div id="templatemo_container">
<div class="templatemo_line"></div>
<div class="templatemo_line"></div>
<div id="templatemo_header">
<div id="templatemo_site_title"></div>
<div id="templatemo_site_slogan"></div>
</div>
<div class="templatemo_line"></div>
<div id="templatemo_content" align="center">
<div id="templatemo_right_column" align="center">
<center>
<?php
$id=$_GET['id'];
$username=$_GET['u'];
$qry = mysql_query("SELECT * FROM hasil_identifikasi, data_user WHERE id_identifikasi='$id' AND hasil_identifikasi.username=data_user.username");
$data = mysql_fetch_array($qry);
?>
<div class="text_area" align="justify">
<br>
<div class="title">
<div align="center"><strong>Hasil identifikasi</strong></div>
</div>
<br />
<table cellpadding="5">
<tr>
<td colspan="3"><hr color="#AAAAAA"></td>
</tr>
<tr>
<td height="30" colspan="3" class="subtitle">Biodata User (Pasien) </td>
</tr>
<tr>
<td width="138"><strong>Nama </strong></td>
<td width="3">:</td>
<td width="898"><?php echo $data['nama_user'];?></td>
</tr>
<tr>
<td><strong>Usia</strong></td>
<td>:</td>
<td><?php echo $data['usia'];?> tahun</td>
</tr>
<tr>
<td><strong>Jenis Kelamin</strong></td>
<td>:</td>
<td><?php if ($data['jenis_kelamin']=='L') echo "Laki-laki"; else echo "Perempuan";?></td>
</tr>
<tr>
<td><strong>Alamat</strong></td>
<td>:</td>
<td><?php echo $data['alamat'];?></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="3"><hr color="#AAAAAA"></td>
</tr>
<tr>
<td colspan="3" class="subtitle">Hasil identifikasi</td>
</tr>
<tr>
<td><div align="right"><strong>Kesimpulan</strong></div></td>
<td>:</td>
<td>Hasil kesimpulan identifikasi, anak anda tidak mengalami jenis golongan anak yang disebabkan virus, disebabkan tidak ada ciri yang anak anda alami.</td>
</tr>
<tr>
<td><div align="right"><strong>Waktu identifikasi</strong></div></td>
<td>:</td>
<td><?php echo tgl_indo($data['tanggal_identifikasi']);?></td>
</tr>
<tr>
<td colspan="3"><hr color="#AAAAAA"></td>
</tr>
</table>
</div>
</div>
<div id="templatemo_footer" align="center">
</div>
</center>
</body>
</html>
<?php