-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexportDataMakeAChoice.php
More file actions
40 lines (38 loc) · 1.06 KB
/
exportDataMakeAChoice.php
File metadata and controls
40 lines (38 loc) · 1.06 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
<?php
error_reporting(0);
include('session.php');
include('redirectExportData.php');
if(!isset($_SESSION['login_user'])){
header("location: index.php"); // Redirecting To Home Page
}
?>
<HTML>
<HEAD>
<TITLE>What Type of Data?</TITLE>
</HEAD>
<BODY>
<div id="dropdownExcel">
<h1>Please select which excel file you'd like to export</h1>
<form action="" method="POST">
<div class="camera-select">
<h3>Choose Entered or Exited</h3>
<select name="camera" class="graph-choice">
<option value="1">Entered</option>
<option value="2">Exited</option>
</select>
</div>
<div class="choice-select">
<h3>Choose the Periodicity</h3>
<select name="choice" class="graph-choice">
<option value="1">Daily</option>
<option value="2">Weekly</option>
<option value="3">Monthly</option>
<option value="4">Annual</option>
</select>
</div>
<br>
<input name="submit" type="submit" value="Submit" class="submit">
</form>
</div>
</BODY>
</HTML>