-
Notifications
You must be signed in to change notification settings - Fork 1
/
edit_queries.php
195 lines (164 loc) · 6.29 KB
/
edit_queries.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
date_default_timezone_set("Asia/Karachi");
SESSION_START();
if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 600)) { // 30mins
session_unset();
session_destroy();
}
$_SESSION['LAST_ACTIVITY'] = time();
if($_SESSION["login"]==true){
}
else{
echo "<script> window.location.assign('index.php')</script>";
}
include("include/conn.php");
?>
<!doctype html>
<html class="fixed">
<head>
<!-- Basic -->
<meta charset="UTF-8">
<title>MMT</title>
<meta name="keywords" content="HTML5 Admin Template" />
<meta name="description" content="Porto Admin - Responsive HTML5 Template">
<meta name="author" content="okler.net">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Web Fonts -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.css" />
<link rel="stylesheet" href="assets/vendor/magnific-popup/magnific-popup.css" />
<link rel="stylesheet" href="assets/vendor/bootstrap-datepicker/css/datepicker3.css" />
<!-- Specific Page Vendor CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap-fileupload/bootstrap-fileupload.min.css" />
<!-- Theme CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme.css" />
<!-- Skin CSS -->
<link rel="stylesheet" href="assets/stylesheets/skins/default.css" />
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="assets/stylesheets/theme-custom.css">
<!-- Head Libs -->
<script src="assets/vendor/modernizr/modernizr.js"></script>
</head>
<body>
<section class="body">
<?php include('include/header.php')?>
<?php include('include/sidebar.php')?>
<section role="main" class="content-body">
<header class="page-header">
<h2>Send Answer to MAil</h2>
<div class="right-wrapper pull-right">
<ol class="breadcrumbs">
<li>
<a href="index.php">
<i class="fa fa-home"></i>
</a>
</li>
<li><span>Edit Riders</span></li>
</ol>
<a class="sidebar-right-toggle" data-open="sidebar-right"><i class="fa fa-chevron-left"></i></a>
</div>
</header>
<?php
if(isset($_GET['id'])){
$edit = $_GET['id'];
$query = "SELECT * FROM queries where id ='$edit'";
$result = mysqli_query($conn , $query);
while ($_row = mysqli_fetch_array($result))
{
$id = $_row['id'];
$question = $_row['questions'];
$mail = $_row['email'];
}
}
?>
<!-- start: page -->
<div class="row">
<div class="col-lg-12">
<section class="panel">
<header class="panel-heading">
<h2 class="panel-title">Update Account Detail</h2>
</header>
<div class="panel-body">
<form class="form-horizontal form-bordered" action="" method="post" enctype="multipart/form-data">
<div class="form-group">
<label class="col-md-3 control-label">Question</label>
<div class="col-md-6">
<input type="text" id="question" name="question" value="<?php echo $question;?>" class="form-control" >
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" >email</label>
<div class="col-md-6">
<input class="form-control" id="email" name="email" value="<?php echo $mail;?>" type="email" >
</div>
</div>
<div class="form-group">
<label class="col-md-3 control-label" >Your Answer</label>
<div class="col-md-6">
<textarea class="form-control" rows="5" id="reply" name="reply"></textarea>
</div>
</div>
<div class="form-btn">
<div class="col-md-6">
<span class="input-group-btn">
<button class="btn btn-primary" type="Update" name="Update" style="margin-left:50%;">Save to Question List</button>
<input type="hidden" name="hidA" id="hidB" value="<?php echo $id; ?>">
</span>
</div>
</div>
</form>
</section>
</div>
</div>
</div>
</section>
<!-- Vendor -->
<script src="assets/vendor/jquery/jquery.js"></script>
<script src="assets/vendor/jquery-browser-mobile/jquery.browser.mobile.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.js"></script>
<script src="assets/vendor/nanoscroller/nanoscroller.js"></script>
<script src="assets/vendor/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<script src="assets/vendor/magnific-popup/magnific-popup.js"></script>
<script src="assets/vendor/jquery-placeholder/jquery.placeholder.js"></script>
<!-- Specific Page Vendor -->
<script src="assets/vendor/jquery-autosize/jquery.autosize.js"></script>
<script src="assets/vendor/bootstrap-fileupload/bootstrap-fileupload.min.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="assets/javascripts/theme.js"></script>
<!-- Theme Custom -->
<script src="assets/javascripts/theme.custom.js"></script>
<!-- Theme Initialization Files -->
<script src="assets/javascripts/theme.init.js"></script>
</body>
</html>
<?php
if (isset($_POST['Update']))
{
$update_id =$id;
$question1 = $_POST['question'];
$reply = $_POST['reply'];
$email = $_POST['mail'];
/*$to = "[email protected]";
$from = "From: [email protected]";
$subject = "Answer from USA";
$message = $reply;*/
$sql1 = "INSERT INTO chatbot_hints (questions, reply)
VALUES ('$question1' , '$reply')";
$sql2 = "DELETE FROM queries where id ='$id' ";
$run_query = mysqli_query($conn,$sql1);
$run_query2 = mysqli_query($conn,$sql2);
if($run_query){
echo "<script>alert('Mail Sent & Record Saved')</script>";
echo "<script>window.open('queries_emails.php' , '_self')</script>";
}
else {
echo "Error updating record: " . mysqli_error($conn);
}
}
else{
echo "Error in If cond";
}
?>