-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.php
32 lines (29 loc) · 1.16 KB
/
edit.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="logo.ico" />
<title>EditDB</title>
<link rel="stylesheet" type="text/css" href="edit.css">
</head>
<body>
<p id="h1">Edit the database from here</p>
<a href="https://databases.000webhost.com/" id="db" >View DB</a><br><br>
<div>
<form method="GET">
<button type="button" class="add" onclick="window.location.href = 'addstud.php';">
Add to student record </button><br><br>
<button type="button" class="rem" onclick="window.location.href = 'remstud.php';">
Remove from student record</button><br><br>
<button type="button" class="add" onclick="window.location.href = 'addbook.php';">
Add to book record</button><br><br>
<button type="button" class="rem" onclick="window.location.href = 'rembook.php';">
Remove frombook record</button><br><br><br>
<button type="button" id="back" onclick="window.location.href = 'index.php';">
Back</button>
</form>
</div>
</body>
</html>