-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstatement.php
154 lines (94 loc) · 3.3 KB
/
statement.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
<?php
session_start();
require_once ('connection.php');
$statement1="";
$statement2="";
$statement3="";
$statement4="";
if(isset($_POST['statement']))
{
$statement1=$_POST['statement1'];
$statement2=$_POST['statement2'];
$statement3=$_POST['statement3'];
$statement4=$_POST['statement4'];
$uname = $_SESSION['user_name'];
$bResult = mysqli_query($con, "SELECT * FROM faces WHERE username = '$uname' ORDER BY id DESC LIMIT 0, 1");
while($rows = mysqli_fetch_array($bResult,MYSQL_ASSOC))
{
$id = $rows['id'];
}
if(strlen($statement1)== '')
{
echo "<script>alert('Enter Statement')</script>";
}
elseif (strlen($statement2)== '')
{
echo "<script>alert('Enter Statement')</script>";
}
elseif(strlen($statement3) == '')
{
echo "<script>alert('Enter Statement')</script>";
}
elseif(strlen($statement4) == '')
{
echo "<script>alert('Enter Statement')</script>";
}
else
{
$aResult = mysqli_query($con, "UPDATE faces SET statment1='$statement1', statment2='$statement2', statment3='$statement3', statment4='$statement4' WHERE username='$uname' AND id='$id'");
$_SESSION['alrt']=1;
header("Location: collectinfo.php");
}
}
?>
<html>
<head>
<?php
require_once 'design.php';
?>
</head>
<body>
<?php
require_once ('logout_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 4 : Statement Detail</h1>
<div class="container">
<div class="jumbotron">
<div>
<textarea id="statement1" rows="5" cols="100" name="statement1" placeholder="Enter Statement-1"
value="<?php echo $statement1;?>" required ></textarea>
</div>
<div>
<textarea id="statement2" rows="5" cols="100" name="statement2" placeholder="Enter Statement-2"
value="<?php echo $statement2;?>" required ></textarea>
</div>
<div>
<textarea id="statement3" rows="5" cols="100" name="statement3" placeholder="Enter Statement-3"
value="<?php echo $statement3;?>" required ></textarea>
</div>
<div>
<textarea id="statement4" rows="5" cols="100" name="statement4" placeholder="Enter Statement-4"
value="<?php echo $statement4;?>" required ></textarea>
</div>
<div class="form-group" align="center">
<input id="submit" type="submit" name="statement" value="SUBMIT" 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>