����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.222.23.166 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/public_html/ad4Lg8Q4min/ |
Upload File : |
<?php require_once('header.php'); ?> <?php if(isset($_POST['form1'])) { $valid = 1; if(empty($_POST['designation_name'])) { $valid = 0; $error_message .= "Designation Name can not be empty<br>"; } else { // Duplicate designation checking // current designation name that is in the database $statement = $pdo->prepare("SELECT * FROM tbl_designation WHERE designation_id=?"); $statement->execute(array($_REQUEST['id'])); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach($result as $row) { $current_designation_name = $row['designation_name']; } $statement = $pdo->prepare("SELECT * FROM tbl_designation WHERE designation_name=? and designation_name!=?"); $statement->execute(array($_POST['designation_name'],$current_designation_name)); $total = $statement->rowCount(); if($total) { $valid = 0; $error_message .= 'Designation name already exists<br>'; } } if($valid == 1) { // updating into the database $statement = $pdo->prepare("UPDATE tbl_designation SET designation_name=? WHERE designation_id=?"); $statement->execute(array($_POST['designation_name'],$_REQUEST['id'])); $success_message = 'Designation is updated successfully.'; } } ?> <?php if(!isset($_REQUEST['id'])) { header('location: logout.php'); exit; } else { // Check the id is valid or not $statement = $pdo->prepare("SELECT * FROM tbl_designation WHERE designation_id=?"); $statement->execute(array($_REQUEST['id'])); $total = $statement->rowCount(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); if( $total == 0 ) { header('location: logout.php'); exit; } } ?> <section class="content-header"> <div class="content-header-left"> <h1>Edit Designation</h1> </div> <div class="content-header-right"> <a href="designation.php" class="btn btn-primary btn-sm">View All</a> </div> </section> <?php foreach ($result as $row) { $designation_name = $row['designation_name']; } ?> <section class="content"> <div class="row"> <div class="col-md-12"> <?php if($error_message): ?> <div class="callout callout-danger"> <p> <?php echo $error_message; ?> </p> </div> <?php endif; ?> <?php if($success_message): ?> <div class="callout callout-success"> <p><?php echo $success_message; ?></p> </div> <?php endif; ?> <form class="form-horizontal" action="" method="post"> <div class="box box-info"> <div class="box-body"> <div class="form-group"> <label for="" class="col-sm-2 control-label">Designation Name <span>*</span></label> <div class="col-sm-4"> <input type="text" class="form-control" name="designation_name" value="<?php echo $designation_name; ?>" autocomplete="off"> </div> </div> <div class="form-group"> <label for="" class="col-sm-2 control-label"></label> <div class="col-sm-6"> <button type="submit" class="btn btn-success pull-left" name="form1">Update</button> </div> </div> </div> </div> </form> </div> </div> </section> <div class="modal fade" id="confirm-delete" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel">Delete Confirmation</h4> </div> <div class="modal-body"> Are you sure want to delete this item? </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button> <a class="btn btn-danger btn-ok">Delete</a> </div> </div> </div> </div> <?php require_once('footer.php'); ?>