ok

Mini Shell

Direktori : /home/ngwcolle/public_html/admin/
Upload File :
Current File : /home/ngwcolle/public_html/admin/edit-employee.php

<?php session_start();
//DB conncetion
include_once('includes/config.php');
//validating Session
if (strlen($_SESSION['aid']==0)) {
  header('location:logout.php');
  } else{

    $teamid = $_GET['teamid'];
    // echo $teamid;
    if(isset($_POST['submit']))
  {
    $pname=strtoupper($_POST['pname']);
    $dept=$_POST['dept'];
  $emptype=$_POST['emptype'];
  $pstatus=$_POST['pstatus'];
  $ptype=$_POST['ptype'];
  $contact=$_POST['contact'];
  $empaddress=$_POST['empaddress'];
  $cdate=$_POST['cdate'];

  
$query=mysqli_query($con, "UPDATE tbl_staff set staffname='$pname',designation='$dept',type='$emptype',nature='$ptype',entrydate='$cdate',
contactno='$contact',adress='$empaddress',status='$pstatus' where id='$teamid'") ;

if ($query) {
echo '<script>alert("Employee details updated Successfully.")</script>';
echo "<script>window.location.href ='manage-staff.php'</script>";
  }else{
echo '<script>alert("Something Went Wrong. Please try again.")</script>';
    }
  }
?>

<!DOCTYPE html>
<html lang="en">

<head>

    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <meta name="description" content="">
    <meta name="author" content="">

    <title> Employee Edit</title>

    <!-- Custom fonts for this template-->
    <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
    <link
        href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
        rel="stylesheet">

    <!-- Custom styles for this template-->
    <link href="css/sb-admin-2.min.css" rel="stylesheet">
<style type="text/css">
label{
    font-size:16px;
    font-weight:bold;
    color:#000;
}

</style>

</head>

<body id="page-top">

    <!-- Page Wrapper -->
    <div id="wrapper">

<?php include_once('includes/sidebar.php');?>

        <!-- Content Wrapper -->
        <div id="content-wrapper" class="d-flex flex-column">

            <!-- Main Content -->
            <div id="content">

                <!-- Topbar -->
          <?php include_once('includes/topbar.php');?>
                <!-- End of Topbar -->

                <!-- Begin Page Content -->
                <div class="container-fluid">

                    <!-- Page Heading -->
                    <h1 class="h3 mb-4 text-gray-800">Edit Employee Details</h1>
     <form method="post"  name="adminprofile" >
     <?php
                        $query = mysqli_query($con, "select * from tbl_staff where id='$teamid'");
                        while ($row = mysqli_fetch_array($query)) {
                        ?>

  <div class="row">

                        <div class="col-lg-12 col-sm-12 col-md-12">

                            <!-- Basic Card Example -->
                            <div class="card shadow mb-4">

                               <div class="card-body">

                               <!-- form starts -->
                               <div class="container py-2">
    <div class="row">
        <div class="col-md-12 mx-auto">
            
                <div class="form-group row">
                    <div class="col-sm-6">
                        <label for="inputFirstname">Employee name</label>
                        <input type="text" class="form-control" id="inputFirstname" name="pname" value="<?php echo $row['staffname']; ?>" placeholder="Name of the Post">
                    </div>
                    <div class="col-sm-6">
                        <label for="inputLastname">Designation/Officer</label>
                        <select name="dept" class="form-control" id="dept" required>
<option value="">--Select Department--</option>
<!-- <option value="Teaching">Teaching</option>
<option value="Non-Teaching">Non-Teaching</option> -->
<?php
              
                $query=mysqli_query($con,"select * from tbl_designation order by id asc ");
                while ($category = mysqli_fetch_array($query)){
            ?>
                <option value="<?php echo $category["postname"];?>" <?php if ($row['designation'] == $category["postname"])
                                                                           echo 'selected="selected"'; ?>><?php echo $category["postname"];?></option>
                <?php }?>

                        </select>
                        
                    </div>
                </div>
                <div class="form-group row">
                    <div class="col-sm-6">
                        <label for="inputAddressLine1">Type of Employee</label>
                        <select name="emptype" id="" required class="form-control">
                        <option value="">--Select Type--</option>
 <option value="Teaching" <?php if ($row['type'] == "Teaching") {
                                                                echo 'selected="selected"';
                                                            } ?>>Teaching</option>
<option value="Non-Teaching" <?php if ($row['type'] == "Non-Teaching") {
                                                                echo 'selected="selected"';
                                                            } ?>>Non-Teaching</option>

                        </select>
                        <!-- <input type="text" class="form-control" name="psa" id="inputAddressLine1" placeholder="Govt. Departments"> -->
                    </div>
                    <div class="col-sm-6">
                        <label for="inputAddressLine2">Nature of Post</label>
                        <select name="ptype" id="ptype" class="form-control">
                            <option value="">--Select--</option>
                            <option value="Regular" <?php if ($row['nature'] == "Regular") {
                                                                echo 'selected="selected"';
                                                            } ?>>Regular</option>
                            <option value="Contractual" <?php if ($row['nature'] == "Contractual") {
                                                                echo 'selected="selected"';
                                                            } ?>>Contractual</option>
                            <option value="Adhoc" <?php if ($row['nature'] == "Adhoc") {
                                                                echo 'selected="selected"';
                                                            } ?>>Adhoc</option>
                            <option value="Retired" <?php if ($row['nature'] == "Retired") {
                                                                echo 'selected="selected"';
                                                            } ?>>Retired</option>
                            <option value="Outsourcing" <?php if ($row['nature'] == "Outsourcing") {
                                                                echo 'selected="selected"';
                                                            } ?>>Outsourcing</option>
                        </select>
                    </div>
                </div>
                <div class="form-group row">
                    <div class="col-sm-6">
                        <label for="inputCity">Date of Joining</label>
                        <input type="date" class="form-control" id="inputCity" value="<?php echo $row['entrydate']; ?>" name="cdate" placeholder="City">
                    </div>
                    <div class="col-sm-6">
                        <label for="inputState">Status</label>
                        <select name="pstatus" id="pstatus" class="form-control">
                            <option value="">--Select--</option>
                            <option value="1" <?php if ($row['status'] == "1") {
                                                                echo 'selected="selected"';
                                                            } ?>>Active</option>
                            <option value="0" <?php if ($row['status'] == "0") {
                                                                echo 'selected="selected"';
                                                            } ?>>Closed</option>
                           
                        </select>
                    </div>
                    
                </div>
                <div class="form-group row">
                    <div class="col-sm-6">
                        <label for="inputCity">Contact No.</label>
                        <input type="number" class="form-control" id="inputCity" name="contact" value="<?php echo $row['contactno']; ?>" placeholder="Contact No">
                    </div>
                    <div class="col-sm-6">
                        <label for="inputState">Address</label>
                        <textarea name="empaddress" id="" cols="30" rows="3" class="form-control"><?php echo $row['adress']; ?></textarea>
                    </div>
                    
                </div>

               
                <button type="submit" class="btn btn-primary px-4 float-right" name="submit">Update</button>
                <a href="manage-staff.php" class="btn btn-danger">Cancel</a>
           
        </div>
    </div>
</div>
                               <!-- form ends -->
     

                        
                                        





                        

                                             

                                </div>
                            </div>

                        </div>

               

                    </div>
                    <?php }?>
</form>

                </div>
                <!-- /.container-fluid -->

            </div>
            <!-- End of Main Content -->

           <?php include_once('includes/footer.php');?>

        </div>
        <!-- End of Content Wrapper -->

    </div>
    <!-- End of Page Wrapper -->

    <!-- Scroll to Top Button-->

           <?php include_once('includes/footer2.php');?>


    <!-- Bootstrap core JavaScript-->
    <script src="vendor/jquery/jquery.min.js"></script>
    <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>

    <!-- Core plugin JavaScript-->
    <script src="vendor/jquery-easing/jquery.easing.min.js"></script>

    <!-- Custom scripts for all pages-->
    <script src="js/sb-admin-2.min.js"></script>

</body>
</html>
<?php } ?>

Zerion Mini Shell 1.0