-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.html
50 lines (47 loc) · 1.55 KB
/
update.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
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Update a Record in a Table</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles2.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">EMILIA NGUYEN HOANG </li>
<li><a href="index.html">HOME</a>
<li><a href="insert.html">INSERT</a></li>
<li><a href="update.html">UPDATE</a></li>
<li><a href="delete.html">DELETE</a></li>
<li><a href="select.html">SELECT</a></li>
</ul>
</div>
<header></header>
<div class="card">
<h2>Update the email of a parent</h2>
<form method="post" action="php/updateRecord.php">
<label>Please enter First Name </label><input type="text" name="fname" /> <br />
<p>Change the email to:</p>
<label>Email</label><input type="text" name="email" /> <br />
<br />
<input type="submit" value="Submit" />
</form>
</div>
<footer>
<ul>
<li>
<a href="https://twitter.com/EmiliaHoang84" class="social twitter">Twitter</a>
</li>
<li>
<a href="https://www.linkedin.com/in/emilia-hoang" class="social linkedin">Stackoverflow</a>
</li>
<li>
<a href="https://github.com/emilia84" class="social github">Github</a>
</li>
</ul>
<p class="copyright">Copyright 2022| Emilia Nguyen Hoang</p>
</footer>
</body>
</html>