ok
Direktori : /home/ngwcolle/public_html/admin/ |
Current File : /home/ngwcolle/public_html/admin/map-employee.php |
<?php session_start(); //DB conncetion include_once('includes/config.php'); //validating Session if (strlen($_SESSION['aid']==0)) { header('location:logout.php'); } else{ if(isset($_POST['submit'])) { $empname=strtoupper($_POST['empname']); $dept=$_POST['dept']; $designation=$_POST['designation']; $assigndate=$_POST['assigndate']; $remark=$_POST['remark']; $query=mysqli_query($con, "INSERT into tbl_staffdept(empname,dept,designation,entrydate,remark) values('$empname','$dept','$designation','$assigndate','$remark')"); if ($query) { echo '<script>alert("Department Mapped Successfully.")</script>'; echo "<script>window.location.href ='manage-dept.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 Mapping to Department Creation</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">Employee Mapping to Department</h1> <form method="post" name="adminprofile" > <div class="row"> <div class="col-lg-8"> <!-- Basic Card Example --> <div class="card shadow mb-4"> <div class="card-body"> <div class="form-group"> <label>Name of the Emplyee</label> <select name="empname" class="form-control" id="dept" required> <option value="">--Select Employee Name--</option> <!-- <option value="Teaching">Teaching</option> <option value="Non-Teaching">Non-Teaching</option> --> <?php $query=mysqli_query($con,"select * from tbl_staff where status=1 order by staffname asc"); while ($category = mysqli_fetch_array($query)){ ?> <option value="<?php echo $category["staffname"];?>"><?php echo $category["staffname"];?></option> <?php }?> </select> </div> <div class="form-group"> <label>Department/Section/Stream/Committee Creation</label> <select name="dept" class="form-control" id="dept" required> <option value="">--Select Department--</option> <?php $query=mysqli_query($con,"select * from tbl_dept order by id asc "); while ($category = mysqli_fetch_array($query)){ ?> <option value="<?php echo $category["id"];?>"><?php echo $category["dept_name"];?></option> <?php }?> </select> </div> <div class="form-group"> <label>Post/Designation/Incharge/OIC</label> <select name="designation" class="form-control" id="designation" required> <option value="">--Select Post/Profile--</option> <?php $query=mysqli_query($con,"select * from tbl_designation where status=1 order by postname asc "); while ($category = mysqli_fetch_array($query)){ ?> <option value="<?php echo $category["postname"];?>"><?php echo $category["postname"];?></option> <?php }?> </select> </div> <div class="form-group"> <label>Date of Assignment of Duty</label> <input type="date" class="form-control" name="assigndate" value="" required='true'> </div> <div class="form-group"> <label>Remark of Assignment of Duty</label> <textarea name="remark" id="" cols="30" rows="3" required class="form-control"></textarea> </div> <div class="form-group"> <input type="submit" class="btn btn-primary btn-user btn-block" name="submit" id="submit" value="Assign"> </div> </div> </div> </div> </div> </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 } ?>