-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathupdatefaculty.php
83 lines (75 loc) · 3 KB
/
updatefaculty.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
<?php
session_start();
if($_SESSION["umail"]=="" || $_SESSION["umail"]==NULL)
{
header('Location:AdminLogin.php');
}
$userid = $_SESSION["umail"];
?><?php include('adminhead.php'); ?>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="page-header">Welcome <a href="welcomeadmin">Admin</a> </h3>
<?php
include("database.php");
$new2=$_GET['fid'];
$sql="select * from facutlytable where FID=$new2";
$result=mysqli_query($connect,$sql);
while($row=mysqli_fetch_array($result))
{
?>
<form action="" method="POST" name="update">
<div class="form-group">
Faculty ID : <?php echo $row['FID']; ?></div>
<div class="form-group">
Faculty Name : <input type="text" name="fname" value="<?php echo $row['FName']; ?>"></div>
<div class="form-group">
Father Name : <input type="text" name="faname" value="<?PHP echo $row['FaName'];?>"><br></div>
<div class="form-group">
Address : <input type="text" name="addrs" rows="5" cols="40" value="<?PHP echo $row['Addrs'];?>"><br></div>
<div class="form-group">
Gender : <input type="text" name="gender" value="<?PHP echo $row['Gender'];?>"><br></div>
<div class="form-group">
Phone Number : <input type="tel" name="phno" value="<?PHP echo $row['PhNo'];?>" maxlength="10"><br></div>
<div class="form-group">
Joining Date : <input type="date" name="jdate" value="<?PHP echo $row['JDate'];?>" readonly> <br></div>
<div class="form-group">
City : <input type="text" name="city" value="<?PHP echo $row['City'];?>" ><br></div>
<div class="form-group">
Password : <input type="text" name="pass" value="<?PHP echo $row['Pass'];?>" maxlength="10"><br></div><br>
<div class="form-group">
<input type="submit" value="Update!" name="update" class="btn btn-primary"></div>
</form>
<?php
}
?>
<?php
if(isset($_POST['update']))
{
$tempfname=$_POST['fname'];
$tempfaname=$_POST['faname'];
$tempaddrs=$_POST['addrs'];
$tempgender=$_POST['gender'];
$tempphno=$_POST['phno'];
$tempcity=$_POST['city'];
$temppass=$_POST['pass'];
//below SQL query will update the existing faculty
$sql="UPDATE `facutlytable` SET FName='$tempfname',FaName='$tempfaname',Addrs='$tempaddrs', Gender='$tempgender', City='$tempcity',Pass='$temppass', PhNo=$tempphno WHERE FID=$new2";
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> Faculty Details updated has been deleted.
</div>";
} else {
// below statement will print error
echo "<br><Strong>Faculty 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'); ?>