-
Notifications
You must be signed in to change notification settings - Fork 92
/
qna.php
100 lines (88 loc) · 2.24 KB
/
qna.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Admin Portal</title>
<link rel="stylesheet" href="navbar.css">
<!--<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One|Open+Sans" rel="stylesheet">-->
</head>
<header>
<h1>AR<span>ESA<span>BOT</span></span></h1>
<nav>
<ul>
<li><a href="adminlogin.php">Chats</a></li>
<li><a href="qna.php">Dataset</a></li>
<li><a href="invalid.php">Invalid</a></li>
<li><a href="index.php">Sign Out</a></li>
</ul>
</nav>
<?php
if(isset($_POST['logout']))
{
session_destroy();
header('location:index.php');
}
?>
</header>
<!--
<div id="main-wrapper">
<center>
<h2><strong>Admin</strong></h2>
<div class="imgcontainer">
<img src="imgs/dc.jpg" class="avatar"/>
</center>
</div>
-->
<style>
input{
padding: 2px;
margin-left: 1255px;
margin-top: 35px;
height: 20px;
width: 90px;
color: #fff;
background-color: #000;
}
</style>
<a href="insert.php"><input type="button" id="insert_btn" value="Insert/Add" align="center"/></a>
<body>
<table cellspacing="5" align="center" border="1px" style="width: 800px;line-height: 40px">
<tr>
<th colspan="5"><h2>Chatbot Dataset</h2></th>
<h3></h3>
<tr>
<th width="20px">id</th>
<th align="center">Query</th>
<th align="center">Reply</th>
<th colspan="2" align="center" >Operation</th>
</tr>
<?php
require_once 'dbconfig/config.php';
$sql = "SELECT id,question,reply FROM chatbot_hints";
$stmt = $db->prepare($sql);
$stmt->execute();
if($stmt->rowCount() > 0){
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
echo "<tr>
<td>".$row["id"]."</td>
<td>".$row["question"]." </td>
<td> ".$row["reply"]." </td>
<td><a href='update.php?rn=$row[id]&ques=$row[question]&rep=$row[reply]'>Edit/Update</td>
<td><a href='delete.php?rn=$row[id] onclick='return checkdelete()'>Delete</td></tr> ";
}
echo "</table>";
}
else{
echo "0 result";
}
$stmt->closeCursor();
?>
</table>
<script>
function checkdelete()
{
return Confirm('Are you Sure you want to delete this record ?');
}
</script>
</body>
</html>