-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (44 loc) · 1.01 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
<style type="text/css">
.query-string a{
display: block;
margin: 15px 0px;
text-decoration: none;
}
#getValue{
border: 0px;
background: #f9023b;
color: white;
padding: 4px 10px;
}
#getValue:hover{
box-shadow: 0px 0px 15px #00000040;
}
html,body{
padding: 0px;
margin:0px;
overflow-x: hidden;
}
.query-string{
padding: 20px;
}
</style>
</head>
<body>
<div class="query-string">
<a href="index.php?id=1&language=html">First Query String URL </a>
<a href="index.php?id=2&language=css"> Second Query String URL </a>
<a href="index.php?id=3&language=javascript"> Third Query String URL </a>
<a href="index.php?id=4&language=php">Fourth Query String URL </a>
<button id="getValue">
Get Query String Value
</button>
<br><br>
<div id="result"></div>
</div>
<script type="text/javascript" src="custom.js"></script>
</body>
</html>