-
Notifications
You must be signed in to change notification settings - Fork 14
/
updateresultdetails.php
82 lines (66 loc) · 1.9 KB
/
updateresultdetails.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
<?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-8">
<h3> Welcome Faculty : <a href="welcomefaculty.php" ><span style="color:#FF0004"> <?php echo $fname; ?></span></a> </h3>
<?php
include('database.php');
$editid=$_GET['editid'];
//below query will print existing record of result details
$sql="select * from result where RsID=$editid";
$result=mysqli_query($connect,$sql);
while($row=mysqli_fetch_array($result))
{
?>
<form action="" method="POST" name="update">
<fieldset>
<legend>Update Result Details</legend>
<div class="form-group">
Result ID :
<?php echo $row['RsID']; ?>
</div>
<div class="form-group">
Enrolment Number :
<?php echo $row['Eno']; ?>
</div>
<div class="form-group">
Marks : <input type="text" name="marks" value="<?PHP echo $row['Marks'];?>">
</div>
<div class="form-group">
<input type="submit" value="Update Result!" name="update" class="btn btn-primary">
</div>
<?php
}
?>
</fieldset>
</form>
<?php
if(isset($_POST['update']))
{
$tempmarks=$_POST['marks'];
$sql="UPDATE `result` SET Marks='$tempmarks' WHERE RsID=$editid";
if (mysqli_query($connect, $sql)) {
echo "
<div class='alert alert-success fade in'>
<a href='#' class='close' data-dismiss='alert' aria-label='close'>×</a>
<strong>Success!</strong> Result has been updated.
";
} else {
//below statement will print error if SQL query fail.
echo "<br><Strong>Result Updation Faliure. Try Again</strong><br> Error Details: " . $sql . "<br>" . mysqli_error($connect);
}
//for close connection
mysqli_close($connect);
}
?>
</div>
</div>
<?php include('allfoot.php'); ?>