-
Notifications
You must be signed in to change notification settings - Fork 9
/
search-all.php
59 lines (54 loc) · 1.81 KB
/
search-all.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
<?php
############################################
# ThaiRIS (Thai Radiology Information System)
# Version: 1.0
# File last modified: 8 Nov 2016
# File name:
# Description :
# http://www.thairis.net
# Email : [email protected]
############################################
include "connectdb.php";
include "session.php";
?>
<!DOCTYPE html>
<html>
<head>
<title>Search</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<script language=JavaScript src="frames_body_array_<?php echo $LANGUAGE; ?>.js" type=text/javascript></script>
<script language=JavaScript src="mmenu.js" type=text/javascript></script>
</head>
<body bgcolor="#d4d4d4">
<br />
<br/>
<table width="794" border="0" align=center bgcolor=#FFFFFF>
<tr><td bgcolor=#79acf3 colspan=2>Search Patient</td></tr>
<tr>
<td width="191"><font face="MS Sans Serif"><center><img src="./images/icoSearch.png"></center><br />Search Patient</font></td>
<td width="587" bgcolor="#f8d290">
<table width="90%" cellspacing="0" cellpadding="0">
<tr >
<td><form name="searchpatient" method="post" action="search-all2.php" accept-charset="UTF-8">
<p><font face="MS Sans Serif">MRN</font>
<input type="text" name="mrn" value="">
<font face="MS Sans Serif">Accession </font> <input type="text" name="accession" value=""></p>
<p><font face="MS Sans Serif">NAME</font><font face="MS Sans Serif">
<input type="text" name="fname" value="">
LASTNAME </font>
<input type="text" name="lname" value="">
<input type="submit" name="Submit" value="Search">
</p>
</form></td>
</tr>
</table>
</td>
</tr>
</table>
<br />
<br />
<script language=javascript>
document.searchpatient.mrn.focus();
</script>
</body>
</html>