-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
45 lines (41 loc) · 1.48 KB
/
index.php
File metadata and controls
45 lines (41 loc) · 1.48 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
<?php
include "assets/mysetup.php";
$title = "Puneet's Dreamhome Project";
htmlStart($title);
?>
<div class = "title">
<h1>DREAMHOME DATABASE</h1>
<h3>Puneet Verma - 119220500</h3>
</div>
<div class = "menu">
<ul>
<li>
Branch
<ul>
<li><a href = "branch/branch-search.php">Search</a></li>
<li><a href = "branch/branch-add.php">Add</a></li>
<li><a href = "branch/branch-delete.php">Delete</a></li>
<li><a href = "branch/branch-update.php">Update</a></li>
</ul>
</li><li>
Staff
<ul>
<li><a href = "staff/staff-search.php">Search</a></li>
<li><a href = "staff/staff-add.php">Add</a></li>
<li><a href = "staff/staff-delete.php">Delete</a></li>
<li><a href = "staff/staff-update.php">Update</a></li>
</ul>
</li><li>
Property
<ul>
<li><a href = "property/property-search.php">Search</a></li>
<li><a href = "property/property-add.php">Add</a></li>
<li><a href = "property/property-delete.php">Delete</a></li>
<li><a href = "property/property-update.php">Update</a></li>
</ul>
</li>
</ul>
</div>
<? php
htmlEnd();
?>