-
Notifications
You must be signed in to change notification settings - Fork 14
/
mydetailsfaculty.php
103 lines (97 loc) · 2.32 KB
/
mydetailsfaculty.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
101
102
103
<?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-5">
<h3> Welcome Faculty : <a href="welcomefaculty.php"><span style="color:#FF0004"> <?php echo $fname; ?></span></a></h3>
<?php
include( 'database.php' );
$varid = $_REQUEST[ 'myfid' ];
//selecting data from faculty table
$sql = "select * from facutlytable where FID='$varid'";
$result = mysqli_query( $connect, $sql );
//loop below will print details of faculty
while ( $row = mysqli_fetch_array( $result ) ) {
?>
<fieldset>
<legend>My Details</legend>
<form action="" method="POST" name="update">
<table class="table table-hover">
<tr>
<td><strong>ID : </strong>
</td>
<td>
<?php echo $row['FID']; ?>
</td>
</tr>
<tr>
<td><strong>Name :</strong> </td>
<td>
<?php echo $row['FName']; ?>
</td>
</tr>
</tr>
<tr>
<td><strong>Father Name :</strong> </td>
<td>
<?PHP echo $row['FaName'];?>
</td>
</tr>
<tr>
<td><strong>Address : </strong>
</td>
<td>
<?PHP echo $row['Addrs'];?> </td>
</tr>
<tr>
<td><strong>Gender :</strong>
</td>
<td>
<?PHP echo $row['Gender'];?>
</td>
</tr>
<tr>
<td><strong>Data Of Joining :</strong>
</td>
<td>
<?PHP echo $row['JDate'];?>
</td>
</tr>
<tr>
<td><strong>City : </strong>
</td>
<td>
<?PHP echo $row['City'];?>
</td>
</tr>
<tr>
<td><strong>Phone Number :</strong>
</td>
<td>
<?PHP echo $row['PhNo'];?> </td>
</tr>
<tr>
<td><strong>Password :</strong> </td>
<td>
<?PHP echo $row['Pass'];?>
</td>
</tr>
<tr>
<td><a href="updatedetailsfromfaculty.php?myfid=<?php echo $row['FID']; ?>"><input type="button" Value="Edit" class="btn btn-info btn-sm"></a></td>
</tr>
</table>
</form>
</fieldset>
<?php
}
?>
</div>
</div>
<?php include('allfoot.php'); ?>