01.
<?php
02.
session_start();
03.
$ses_adminID
=
$_SESSION
[
"ses_adminID"
];
04.
if
(
$ses_adminID
==
""
){
05.
?>
06.
<script language=
"javascript"
>alert(
"กรุณาเข้าสู่ระบบ"
);</script>
07.
<script language=
"JavaScript"
> document.location.href=
"login_admin.php"
; </script>
08.
<?php
09.
}
else
10.
?>
11.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=tis-620"
/>
12.
<link href=
"../css/style.css"
rel=
"stylesheet"
type=
"text/css"
/>
13.
<style type=
"text/css"
>
14.
<!--
15.
.style3 {font-size: 12px}
16.
-->
17.
</style>
18.
<?php
include
(
"header.php"
); ?>
19.
<?php
include
(
"menu.php"
); ?>
20.
<?php
include
(
"config.php"
);?>
21.
22.
23.
<!--star content-->
24.
25.
<body>
26.
<td width=
"75"
valign=
"top"
><div align=
"center"
>
27.
<table width=
"800"
border=
"0"
>
28.
<tr>
29.
<td><div align=
"center"
>
30.
<form id=
"form1"
name=
"form1"
method=
"post"
action=
"inser_service.php"
>
31.
<table width=
"645"
border=
"0"
>
32.
<tr bgcolor=
"#FFCC33"
>
33.
<td colspan=
"2"
><div align=
"center"
><strong>เพิ่มการบริการ</strong></div></td>
34.
</tr>
35.
36.
<tr>
37.
<td width=
"313"
bgcolor=
"#FFFF99"
><div align=
"right"
>รหัสผู้ใช้บริการ : </div></td>
38.
<td width=
"322"
bgcolor=
"#FFFF99"
><label>
39.
<input name=
"serviceID"
type=
"hidden"
id=
"serviceID"
value=
"<?php echo $serviceID; ?>"
size=
"5"
maxlength=
"2"
readonly />
40.
<strong>
41.
<select name=
"personID"
id=
"personID"
>
42.
<?php
43.
$sql
=
"SELECT * FROM person"
;
44.
$result
= mysql_query(
$sql
,
$conn
)
45.
or
die
(
"ไม่สามารถดึงข้อมูลจากตาราง person ได้"
.mysql_error());
46.
while
(
$data
=mysql_fetch_array(
$result
)) {
47.
?>
48.
<option value=
"<?php echo $personID; ?>"
></option>
49.
<?php
50.
}
51.
?>
52.
</select>
53.
</strong></label></td>
54.
</tr>
55.
<tr>
56.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>วันที่มาใช้บริการ : </div></td>
57.
<td bgcolor=
"#FFFF99"
><input type=
"text"
name=
"dateService"
id=
"dateService"
value="<?php
58.
include
(
'thaidate.php'
);
59.
echo
thaidate(
'j/F/Y '
);
60.
?>" readonly/></td>
61.
</tr>
62.
<tr>
63.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>อาการ : </div></td>
64.
<td bgcolor=
"#FFFF99"
><input name=
"symptom"
type=
"text"
id=
"symptom"
size=
"20"
maxlength=
"30"
/></td>
65.
</tr>
66.
<tr>
67.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>ความดัน : </div></td>
68.
<td bgcolor=
"#FFFF99"
><input name=
"pressure"
type=
"text"
id=
"pressure"
size=
"15"
maxlength=
"10"
/></td>
69.
</tr>
70.
<tr>
71.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>อุณหภูมิ : </div></td>
72.
<td bgcolor=
"#FFFF99"
><input name=
"temperature"
type=
"text"
id=
"temperature"
size=
"15"
maxlength=
"6"
/>
73.
<span
class
=
"style3"
>*องศาเซลเชียส</span></td>
74.
</tr>
75.
<tr>
76.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>น้ำหนัก : </div></td>
77.
<td bgcolor=
"#FFFF99"
><input name=
"weight"
type=
"text"
id=
"weight"
size=
"15"
maxlength=
"6"
/></td>
78.
</tr>
79.
<tr>
80.
<td bgcolor=
"#FFFF99"
><div align=
"right"
>ส่วนสูง : </div></td>
81.
<td bgcolor=
"#FFFF99"
><input name=
"height"
type=
"text"
id=
"height"
size=
"15"
maxlength=
"6"
/></td>
82.
</tr>
83.
<tr>
84.
<td bgcolor=
"#FFFF99"
></td>
85.
<td bgcolor=
"#FFFF99"
><input type=
"submit"
name=
"save"
id=
"save"
value=
"บันทึก"
/>
86.
<input type=
"reset"
name=
"cancel"
id=
"cancel"
onclick=
"history.go(-1) "
value=
"ยกเลิก"
/></td>
87.
</tr>
88.
</table>
89.
</form>
90.
</div></td>
91.
</tr>
92.
</table>
93.
</div>
94.
</table>
95.
<?php
include
(
"footer.php"
); ?>