-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdept.php
More file actions
51 lines (49 loc) · 1.23 KB
/
dept.php
File metadata and controls
51 lines (49 loc) · 1.23 KB
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
<?php
include 'header.php';
include 'conn.php';
$query15 = "select No_avail from room order by rent";
$query_run15 = mysql_query($query15);
?>
<html>
<head>
<title>
Room Rent Info
</title>
<style type="text/css">
th {color:rgb(160,25,0);font-size:200%}
td {color:black;font-size:150%}
</style>
</head>
<body>
<table border="3" cellpadding="10">
<caption style="font-size:150%"><u><b>Department</caption>
<tr>
<th>Department No.</th>
<th>Department Name</th>
</tr>
<tr>
<td>1</td>
<td>Housekeeping</td>
</tr>
<tr>
<td>2</td>
<td>Food & Beverage</td>
</tr>
<tr>
<td>3</td>
<td>Sales & Marketing</td>
</tr>
<tr>
<td>4</td>
<td>Accounting</td>
</tr>
<tr>
<td>5</td>
<td>Security</td>
</tr><tr>
<td>6</td>
<td>Front Office</td>
</tr>
</table>
</body>
</html>