-
Notifications
You must be signed in to change notification settings - Fork 1
/
dataselect.php
165 lines (127 loc) · 5.91 KB
/
dataselect.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?php include('server.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Theme Made By www.w3schools.com - No Copyright -->
<title>DELL Analytics</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">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Encode+Sans+Expanded" rel="stylesheet">
<link rel="icon" href="./images/logo1.png" />
</head>
<body id="myPage" data-spy="scroll" data-target=".navbar" data-offset="60">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.php"><img src="./images/log3.png"></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="index.php" >ABOUT</a></li>
<li><a href="index.php">SERVICES</a></li>
<li><a href="index.php">CONTACT</a></li>
<li ><a href="analysis.php" >ANALYSIS</a></li>
<li class="active" ><a href="dataselect.php">DATASETS</a></li>
</ul>
</div>
</div>
</nav>
<br><br><br><br><br><br>
<center><h3 style="color: grey " >DATASETS OF DIFFERENT PRODUCTS COUNTRY WISE</h3> </center>
<!-- Container ( issue) -->
<br><br>
<div id="issue" class="container-fluid" style="padding-left: 10%;padding-right: 10%">
<div class="text-center">
<br>
<div class="container" style="padding-left: 20%;padding-right: 20%">
<div class="panel panel-default">
<div class="panel-heading" style="font-size: 30px"> Datasets <span style="font-size: 20px" class="glyphicon glyphicon-tasks"></div>
<div class="panel-body">
<form method="post">
<div class="form-group" style="font-size: 20px">
<label for="inputState" style="font-family: Montserrat, sans-serif">Country</label>
<select id="inputState" name='datacountry' class="form-control" style="font-size: 18px">
<option selected style="font-family: Montserrat, sans-serif" value="USA">USA</option>
<option value="India">India</option>
<option value="UAE">UAE</option>
<option value="China">China</option>
<option value="UK">UK</option>
<option value="Brazil">Brazil</option>
<option value="Australia">Australia</option>
</select>
</div>
<div class="form-group" style="font-size: 20px">
<label for="inputState" style="font-family: Montserrat, sans-serif">Product</label>
<select id="inputState" name='dataproduct' class="form-control" style="font-size: 18px">
<option selected style="font-family: Montserrat, sans-serif" value="XPS Series">XPS Series</option>
<option value="G Series" >G Series</option>
<option value="Alienware">Alienware</option>
<option value="Chromebook">Chromebook</option>
<option value="Latitude Series">Latitude Series</option>
<option value="OptiPlex">OptiPlex</option>
<option value="Inspiron Series">Inspiron Series</option>
<option value="Routers">Routers</option>
<option value="PC Accessories">PC Accessories</option>
<option value="Monitors">Monitors</option>
<option value="Printers">Printers</option>
<option value="Keyboards and mouse">Keyboards and mouse</option>
</select>
</div>
<center><button type="submit" name="datasubmit" class="btn btn-primary btn-space" style="font-size: 15px">Search <span class="glyphicon glyphicon-search"></span> </button>
</center>
</form>
</div>
</div>
</div>
<!-- <footer class="container-fluid text-center">
<a href="#myPage" title="To Top">
<span class="glyphicon glyphicon-chevron-up"></span>
</a>
<p> Made By Swapnil</a></p>
</footer>
-->
<script>
$(document).ready(function(){
// Add smooth scrolling to all links in navbar + footer link
$(".navbar a, footer a[href='#myPage']").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (900) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
$(window).scroll(function() {
$(".slideanim").each(function(){
var pos = $(this).offset().top;
var winTop = $(window).scrollTop();
if (pos < winTop + 600) {
$(this).addClass("slide");
}
});
});
})
</script>
</body>
</html>