-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.php
More file actions
73 lines (56 loc) · 2.73 KB
/
update.php
File metadata and controls
73 lines (56 loc) · 2.73 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en"><!--declare the language of the page-->
<head>
<title>MasterClasses</title><!--Display as site tab title-->
<link rel="shortcut icon" type="image/x-icon" href="images/master.ico"> <!--adds a image to the title to display in the tab-->
<link rel="stylesheet" type="text/css" href="masterclass_style.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<!-- link css and html-->
<meta name ="viewport" content="width=device-width, initial-scale=1.0">
<!--make the webpage fit the screen-->
</head>
<body>
<div class="dif">
<a href="home.php"><img class="logo" src="images/masterclasses_2.jpg" alt="Logo" title="return to mainpage"></a>
<h1 id="no_head">Master</h1>
<br><br><br><br></div>
<div class="navbar">
<a href="home.php">Home</a>
<a href="class.php">Classes</a>
<a href="about.html">About</a>
<a href="application.php">Apply</a>
<div class="dropdown" style="float:right;">
<div class="login">Welcome</div>
<!--<div class="login"><?php print"<p>Welcome ".$_POST['uid']."</p>";?></div>-->
<div class="dropdown-content">
<a href="">Settings</a>
<a href="logout.php">Log out</a>
</div></div></div>
<div class="w3-container">
<h3>This form is used to update master class.</h3>
<form class="w3-container w3-card-4 w3-light-grey" action = "updateDB.php" method="GET" >
<h2>Update Master Class</h2>
<p>Make changes:</p>
<p><label>Class ID</label>
<input class="w3-input w3-border" name="classid" type="text" value ="<?php echo $_GET['cid']; ?>"/></p>
<p><label>Class Title</label>
<input class="w3-input w3-border" name="title" type="text" value ="<?php echo $_GET['tt']; ?>"/></p>
<p><label>Class Description</label>
<input class="w3-input w3-border" name="description" type="text" value ="<?php echo $_GET['ds']; ?>"/></p>
<p><label>Class Lecturer</label>
<input class="w3-input w3-border" name="lecturer" type="text" value ="<?php echo $_GET['lec']; ?>"/></p>
<p><label>Class Start Date</label>
<input class="w3-input w3-border" name="date" type="text" value ="<?php echo $_GET['dt']; ?>"/></p>
<p><label>Class Start Time</label>
<input class="w3-input w3-border" name="time" type="text" value ="<?php echo $_GET['tm']; ?>"/></p>
<p><label>Class price</label>
<input class="w3-input w3-border" name="price" type="text" value ="<?php echo $_GET['cp']; ?>"/></p>
<p><button class="w3-btn w3-border w3-pink" name="submit">Update</button></p>
</form>
</div>
<button id="btn_edit_3"><a class="edit_link"href="home.php">Back</button></a>
<div class="bottom_sec">
<img id="copy" src="images/fav_mini.png" alt="MasterClasses logo"><p>© MasterClasses 2020</p>
</div>
</body>
</html>