-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathviewquery.php
52 lines (49 loc) · 1.23 KB
/
viewquery.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
<?php
session_start();
if ( $_SESSION[ "sidx" ] == "" || $_SESSION[ "sidx" ] == NULL ) {
header( 'Location:studentlogin' );
}
$userid = $_SESSION[ "sidx" ];
$userfname = $_SESSION[ "fname" ];
$userlname = $_SESSION[ "lname" ];
?>
<?php include('studenthead.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<h3> Welcome <a href="welcomestudent.php" <?php echo "<span style='color:red'>".$userfname." ".$userlname."</span>";?> </a></h3>
<?php
include('database.php');
$seid=$_GET['eid'];
//below query will print the existing record of query
$sql="SELECT * FROM query WHERE Eid='$seid'";
$rs=mysqli_query($connect,$sql);
echo "<h2 class='page-header'>Query View</h2>";
echo "<table class='table table-striped' style='width:100%'>
<tr>
<th>Query ID</th>
<th>Query</th>
<th>Ans</th>
</tr>";
while($row=mysqli_fetch_array($rs))
{
?>
<tr>
<td>
<?PHP echo $row['Qid'];?>
</td>
<td>
<?PHP echo $row['Query'];?>
</td>
<td>
<?PHP echo $row['Ans'];?>
</td>
</tr>
<?php
}
?>
</table>
<a href="askquery.php?eid=<?php echo $userid; ?>"> <button href="" type="submit" class="btn btn-primary">Ask New Query</button></a>
</div>
</div>
<?php include('allfoot.php'); ?>