-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindemployee.html
executable file
·37 lines (35 loc) · 1014 Bytes
/
findemployee.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
35
36
37
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Find Employee Record</title>
</head>
<body>
<h2>Search for an Employee Record</h2>
<p>Find and employee by Last Name</p>
<br>
<hr> <!-- This is the hr tag, or "horizonatal reference" -->
<br>
<p>This will search the employees table in the MySQL Database</p>
<p>The PHP Page will simply display the records as a list</p>
<p>Employee "Weedman" is pre-populated as an example</p>
<form action="findemployee.php">
Last name:<br>
<input type="text" name="lastname" value="Weedman">
<br><br>
<input type="submit" value="Submit">
</form>
<br>
<hr> <!-- This is the hr tag, or "horizonatal reference" -->
<br>
<p>This Form will link to a PHP page that displays the records as an HTML Table</p>
<form action="findemployeetable.php">
Last name:<br>
<input type="text" name="lastname" value="Weedman">
<br><br>
<input type="submit" value="Submit">
</form>
<br><br>
<a href="index.html" title="Home" target="_parent">Home Page</a>
</body>
</html>