ok

Mini Shell

Direktori : /home2/selectio/www/obnovit-tracking/old/
Upload File :
Current File : /home2/selectio/www/obnovit-tracking/old/pfdetais-list-edit.php

<?php  include "header.php";

if(isset($_POST['Update_Pf_Details'])){
        try{
            //$date = date('Y-m-d h:i:s', time());
/*            $month =date('m',strtotime($_POST['holiday_date']));
            $year =date('Y',strtotime($_POST['holiday_date']));*/
            
$statement = $pdo->prepare("UPDATE tbl_pf_details SET name=?,type=?,percentage=?,pf_type_id=? WHERE id=?");
$result=$statement->execute(array($_POST['name'],$_POST['type'],$_POST['percentage'],$_POST['pf_type_id'],$_POST['ids']));
                    
                    if($result){
                        $message = 'branch is updated successfully!';
                        unset($_POST);      
                    }else{
                        $warning="Something went wrong try again...";
                    }  
                }catch(Exception $e){
                    $error=$e;
                }   
    }
    $ids=$_GET['id'];
    $statement = $pdo->prepare("SELECT * FROM tbl_pf_details e where e.id=".$ids);
    $statement->execute();
    $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC);
    $totalData = $statement->rowCount();

if($totalData==1){
?>
<div class="content-wrapper" style="background:white;">
        <section class="content-header">
            <h4><b>Update PF TYPE Details</b></h4>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Update PF Type Details</li>            </ol>
        </section>


        <div class="col-lg-12 alerts"><br>
            <div id="custom-alerts" style="display:none;">
                <div class="alert alert-dismissable">
                    <div class="custom-msg"></div>
                </div>
            </div>
            <?php if ($error)  { ?>
            <div class="alert alert-danger alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-ban"></i> Error</h4>
                <?= $error; ?>
            </div>
            <?php $error=0;} if ($warning) { ?>
            <div class="alert alert-warning alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-warning"></i> warning</h4>
                <?= $warning; ?>
            </div>
            <?php  $warning=0;} if ($message) { ?>
            <div class="alert alert-success alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4>    <i class="icon fa fa-check"></i> Success</h4>
                <?= $message; ?>
            </div>
            <?php $message=0; } ?>
        </div>
        <div class="clearfix"></div>







<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div>
                <div class="box-body">
                    <div class="col-lg-12">

                        <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                            
    <?php foreach($emp_data as $data){ ?>
                                    <input type="hidden" name="ids" value="<?=$emp_data[0]['id']?>" class="form-control tip" id="id"  required="required" />

                        
                        <div class="row">
                            <div class="col-md-6">
                                <div class="form-group">
                                    <label class="required" for="name"> Name </label>                                    
                                    <input type="text" name="name" value="<?=$data['name']?>" placeholder="Enter  Your Name" class="form-control tip" id="name"  required="required" />
                                </div>
                            </div>
                            
                             <div class="col-md-6">
                                <div class="form-group">
                                    <label class="required" for="type"> PF Type </label>                                    
                                    <input type="text" name="type" value="<?=$data['type']?>" placeholder="Enter  PF Type" class="form-control tip" id="type"  required="required" />
                                </div>
                            </div>
                            
                        </div>
                        
                        
                         <div class="row">
                            <div class="col-md-6">
                                <div class="form-group">
                                    <label class="required" for="type_name"> PF Percentage </label>                                    
                                    <input type="text" name="percentage" value="<?=$data['percentage']?>" placeholder="Enter  PF Percentage" class="form-control tip" id="percentage"  required="required" />
                                </div>
                            </div>
                            
                        <div class="col-sm-6">
                        <div class="form-group">
                        <label class="control-label" for="pf_type_id">Select PF Type Id</label>
                        <select name="pf_type_id" class="form-control select2" style="width:100%" id="pf_type_id">
                        <option value="0">All PF Type Ids</option>
                        <?php $statement = $pdo->prepare("SELECT * FROM `tbl_pf_type`");
                                $statement->execute();
                                $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); 
                                foreach ($location_result as $result) {
                                    echo "<option value=".$result['id'].">".$result['type_name']."</option>";
                                }?>
                        </select>
                        </div>
                        </div>
                            
                        </div>
                         
                       
                        
                              <?php } ?>       

                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="Update_Pf_Details" value="Update_Pf_Details"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <?php echo "<a href=pflist-edit.php?id=".$ids.">
                            <button class='btn btn-primary' >
                            <i class='fa fa-refresh'></i> Reset Form</button></a>"; ?> 
                                            
                             <a href="pflist.php"><button class="btn btn-warning" ><i class="fa fa-chevron-left"></i> Back to List</button></a>
                         </div>
                    <div class="clearfix"></div>
                </div>
            </div>
        </div>
    </div>
</section>


<?php } include "footer.php";?>

Zerion Mini Shell 1.0