-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (32 loc) · 1.24 KB
/
index.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Employee Management System</title>
</head>
<!-- Body -->
<body>
<h2>Employee Management System v1.0.7</h2>
<p>This system uses Apache, PHP, and the MariaDB (MySQL) Database System</p>
<p>Please Select from the Options Below:</p>
<br>
<a href="findemployee.html" title="Find Employee" target="_parent">Search Employee Records</a>
<br><br>
<a href="addemployee.html" title="Add Employee" target="_parent">Add Employee Record</a>
<br><br>
<a href="updateemployee.html" title="Update Employee" target="_parent">Update Employee Record</a>
<br><br>
<a href="deleteemployee.html" title="Delete Employee" target="_parent">Delete Employee Record</a>
<br><br>
<a href="findemployeeajax2.html" title="Find Employee with AJAX" target="_parent">Find Employee Record AJAX</a>
<br><br>
<a href="dynamic.php">Link to Dynamic PHP Page</a>
<br><br>
<p>Simple Client-Side JavaScript Example - Click to show the date</p>
<p>This code is ran by the broswer - a browser runs the JavaScript. Just one line of code.</p>
<button type="button"
onclick="document.getElementById('demo').innerHTML = Date()">
Click me to display Date and Time.</button>
<p id="demo"></p>
</body>
</html>