-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcollectinfo.php
139 lines (82 loc) · 2.66 KB
/
collectinfo.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
<?php
session_start();
require_once ('connection.php');
$res = $_SESSION['alrt'];
if($res == 1){
echo "<script>alert('Crime Investigation Is Completed')</script>";
}
$crime_time="";
$place="";
$crime_type="";
if(isset($_POST['collectinfo']))
{
$crime_time=$_POST['crime_time'];
$place=$_POST['place'];
$crime_type=$_POST['crime_type'];
$uname = $_SESSION['user_name'];
if(strlen($crime_time)== '')
{
echo "<script>alert('Enter Crime Time')</script>";
}
elseif (strlen($place)== '')
{
echo "<script>alert('Enter Place')</script>";
}
elseif(strlen($crime_type) == '')
{
echo "<script>alert('Enter Crime Type')</script>";
}
else
{
$aResult = mysqli_query($con, "INSERT INTO faces (username, crime_time,place,crime_type) values ('$uname','$crime_time','$place','$crime_type')");
header("Location: collectevidence.php");
}
}
?>
<html>
<head>
<?php
require_once 'design.php';
?>
</head>
<body>
<?php
require_once ('welcome_header.php');
?>
<form action="<?php echo($_SERVER["PHP_SELF"]);?>" method="post" name="form1" enctype="multipart/form-data">
<section id="hero" style="padding: 60px 72px; background: #fff; text-align: center;">
<h1>Phase 1 : Collect Information</h1>
<div class="container">
<div class="jumbotron">
<div>
<input id="crime_time" type="time" name="crime_time" placeholder="Crime Time"
value="<?php echo $crime_time;?>" required>
</div>
<br>
<div>
<input id="place" type="text" name="place" placeholder="Place"
value="<?php echo $place;?>" required >
</div>
<div class="form-group">
<input id="crime_type" type="text" name="crime_type" placeholder="Crime Type" maxlength="20" size="43" value="<?php echo $crime_type;?>" required>
</div>
<div class="form-group" align="center">
<input id="submit" type="submit" name="collectinfo" value="NEXT" class="btn btn-danger">
</div>
</div>
</div>
</section>
<?php
require_once ('footer.php');
?>
</form>
<!-- Java Script
================================================== -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.10.2.min.js"><\/script>')</script>
<script type="text/javascript" src="js/jquery-migrate-1.2.1.min.js"></script>
<script src="js/waypoints.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/main.js"></script>
</body>
</html>