-
Notifications
You must be signed in to change notification settings - Fork 9
/
center.php
88 lines (65 loc) · 1.64 KB
/
center.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
<?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");
$result = mysql_query("SELECT CODE, NAME, NAME_ENG FROM xray_center");
?>
<html>
<head>
<title>CENTER</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>
<link href="css/main.css" rel="stylesheet" type="text/css" />
<?php
$topbar = "Add New Procedure";
include "topbar.php";
?>
<body bgcolor="#d4d4d4">
Center : <br />
<?php
echo "<table border='1'>
<tr bgcolor=#8080ff>
<th>CODE</th>
<th>Name</th>
<th>English</th>
</tr>\n";
//$row1 = mysql_fetch_array($result);
//if ($row1 < 0) {
//exit;
//}
while($row = mysql_fetch_array($result))
{
if($bg == "#FFFFFF")
{ //
$bg = "#FFCCCC";
} else {
$bg = "#FFFFFF";
}
echo "<tr bgcolor=$bg>";
echo "<td>" . $row['CODE'] . "</td>";
echo "<td>" . $row['NAME'] . "</td>";
echo "<td>" . $row['NAME_ENG'] . "</td>";
echo "</tr>\n";
}
echo "</table>";
?>
<hr>
Add Center
<form id="form1" name="form1" method="post" action="center-add.php">
CODE <input type="text" name="code"/>
Name <input type="text" name="name"/>
English <input type="text" name="name_eng"/>
<input type="reset" /><input type="submit" />
</form>
</body>
</html>