-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdatequery.php
80 lines (75 loc) · 2.24 KB
/
updatequery.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
<?php
session_start();
if ( $_SESSION[ "fidx" ] == "" || $_SESSION[ "fidx" ] == NULL ) {
header( 'Location:facultylogin' );
}
$userid = $_SESSION[ "fidx" ];
$fname = $_SESSION[ "fname" ];
?>
<?php include('fhead.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3> Welcome Faculty : <a href="welcomefaculty.php" ><span style="color:#FF0004"> <?php echo $fname; ?></span></a> </h3>
<?php
include('database.php');
$editid=$_GET['gid'];
$sql="select * from query where Qid=$editid";
$result=mysqli_query($connect,$sql);
while($row=mysqli_fetch_array($result))
{
?>
<form action="" method="POST" name="update">
<fieldset>
<legend>Query Details</legend>
<div class="form-group">
Qurey ID :
<?php echo $row['Qid']; ?>
</div>
<div class="form-group">
Email ID :
<?php echo $row['Eid']; ?>
</div>
<div class="form-group">
Query : <br>
<textarea class="form-control" rows="5" cls="40" name="queryx">
<?php echo $row['Query']; ?> </textarea><br>
</div>
<div class="form-group">
Answer : <br>
<textarea class="form-control" rows="5" cls="40" name="ansx">
<?PHP echo $row['Ans'];?>
</textarea>
</div>
<div class="form-group">
<input type="submit" value="Update!" name="update" class="btn btn-primary">
</div>
<?php
}
?>
</fieldset>
</form>
<?php
if ( isset( $_POST[ 'update' ] ) ) {
$tempquery = $_POST[ 'queryx' ];
$tempans = $_POST[ 'ansx' ];
//below query will update the existing record of query
$sql = "UPDATE `query` SET Query='$tempquery', Ans='$tempans' WHERE Qid='$editid'";
if ( mysqli_query( $connect, $sql ) ) {
echo "<br>
<br><br>
<div class='alert alert-success fade in'>
<a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a>
<strong>Success!</strong>Query Details has been updated.
</div>";
} else {
//below statement will print error if SQL query fail.
echo "<br><Strong>Query Details Updating Faliure. Try Again</strong><br> Error Details: " . $sql . "<br>" . mysqli_error( $connect );
}
//for close connection
mysqli_close( $connect );
}
?>
</div>
</div>
<?php include('allfoot.php'); ?>