-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddemployee.html
35 lines (34 loc) · 898 Bytes
/
addemployee.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Add Employee Record</title>
</head>
<body>
<h2>Add an Employee Record</h2>
<p>This will add a record to the employee table in the MySQL Database</p>
<p>Employee "Weedman" is pre-populated as an example</p>
<!-- here is the start of the form -->
<form action="addemployee.php">
Last name:<br>
<input type="text" name="lastname" value="Weedman">
<br><br>
First Name:<br>
<input type="text" name="firstname" value="Josphine">
<br><br>
Birth date:<br>
<input type="text" name="birth_date" value="1969-05-30">
<br><br>
Hire date:<br>
<input type="text" name="hire_date" value="1999-05-30">
<br><br>
Gender:<br>
<input type="text" name="gender" value="F">
<br><br>
Employee number:<br>
<input type="text" name="emp_no" value="500001">
<br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>