-
Notifications
You must be signed in to change notification settings - Fork 0
/
selectUpdate.php
67 lines (56 loc) · 2.21 KB
/
selectUpdate.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
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
<!DOCTYPE html>
<html>
<!-- <head>
<title>Bootstrap 101 Template</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
<!-- Bootstrap -->
<!--
<link href = "css/bootstrap.min.css" rel = "stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src = "https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src = "https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<!--
</head> -->
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">English Preimer League Stats</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="firstpage.php">Home</a></li>
<li><a href="selectStat.php">Stats Lookup</a></li>
<li><a href="selectInsert.php">Insertions</a></li>
<li><a href="selectDelete.php">Deletions</a></li>
<li><a href="selectUpdate.php">Updates</a></li>
</ul>
</div>
</nav>
<body>
<div class="container">
<h2>Updates</h2>
<p>Please Select the table you want to Update into.</p>
<div class="dropdown">
<button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Tables
<span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#">Competitions</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Games</a></li>
<li><a href="playerInsert.php">Players</a></li>
<li><a href="#">Teams</a></li>
</ul>
</div>
</div>
</body>
</html>