-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathupdate.php
107 lines (84 loc) · 1.9 KB
/
update.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
<?php
require_once 'dbconfig/config.php';
$rn=$_GET['rn'];
$ques=$_GET['ques'];
$rep=$_GET['rep'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Update</title>
<style >
input{
font-size: 1vw;
}
table{
color: white;
border-radius: 19px;
background:linear-gradient(blue,black,blue);
}
#button
{
background-color:rgba(0,0,0,0.6);
color: white;
height: 32px;
width: 125px;
border-radius: 25px;
font-size: 16px;
}
body{
background:linear-gradient(black,black);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 100% 100%;
}
</style>
</head>
<br><br><br><br><br><br>
<form action="" method="GET">
<table border="0" bgcolor="black" align="center" cellspacing="50">
<div id="main-wrapper">
<center>
<div class="imgcontainer">
<img src="image/bot_avatar.png" class="avatar"/>
</center>
</div>
<tr>
<td>Id</td>
<td><input type="text" value="<?php echo "$rn" ?>" name="id" required></td>
</tr>
<tr>
<td>Question</td>
<td><input type="text" value="<?php echo "$ques" ?>" name="question" required></td>
</tr>
<tr>
<td>Reply</td>
<td><input type="text" value="<?php echo "$rep" ?>" name="reply" required></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" id=button name="submit" value="Update Details"/></td>
</tr>
</table>
</form>
</body>
</html>
<?php
if($_GET['submit'])
{
$id=$_GET['id'];
$question=$_GET['question'];
$reply=$_GET['reply'];
$sql = "UPDATE CHATBOT_HINTS SET id='$id',question='$question',reply='$reply' WHERE id='$id' ";
$stmt = $db->prepare($sql);
if ( $stmt->execute() ) {
echo "<script>alert('Record Updated')</script>";
}
?>
<META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://localhost:7882/qna.php">
<?php
else
{
echo "Failed To Update Record";
}
}
?>