-
Notifications
You must be signed in to change notification settings - Fork 14
/
makeresult.php
92 lines (81 loc) · 2.28 KB
/
makeresult.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
<?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' );
$make = $_GET[ 'makeid' ];
//selecting data form result table form database
$sql = "SELECT * FROM examans WHERE ExamID=$make";
$rs = mysqli_query( $connect, $sql );
while ( $row = mysqli_fetch_array( $rs ) ) {
?>
<fieldset>
<legend>Make Result</legend>
<form action="" method="POST" name="makeresult">
<table class="table table-hover">
<tr>
<td><strong>Enrolment number </strong>
</td>
<td>
<?php $eno=$row['Senrl']; echo $eno; ?>
</td>
</tr>
<tr>
<td><strong>Exam ID:</strong> </td>
<td>
<?php $ExamID= $row['ExamID']; echo $ExamID; ?>
</td>
</tr>
<tr>
<td><strong>Marks</strong> </td>
<td>
<select class="form-control" name="marks" required>
<option value="">---Select---</option>
<option value="Pass">Pass</option>
<option value="Fail">Fail</option>
<option value="Under Progress">Under Progress</option>
</select>
</td>
</tr>
<td><button type="submit" name="make" class="btn btn-primary">Make</button>
</td>
<?php
}
?>
<?php
if(isset($_POST['make']))
{
$mark= $_POST['marks'];
$sql="INSERT INTO `result`(`Eno`, `Ex_ID`, `Marks`) VALUES ($eno, '$ExamID' ,'$mark')";
if (mysqli_query($connect, $sql)) {
echo "
<br><br>
<div class='alert alert-success fade in'>
<a href='ResultDetails.php' class='close' data-dismiss='alert' aria-label='close'>×</a>
<strong>Success!</strong> Result Updated.
</div>
";
} else {
//error message if SQL query fails
echo "<br><Strong>Result Updation Faliure. Try Again</strong><br> Error Details: " . $sql . "<br>" . mysqli_error($connect);
//close the connection
mysqli_close($connect);
}
}
?>
</table>
</form>
</fieldset>
</div>
</div>
<?php include('allfoot.php'); ?>