ok

Mini Shell

Direktori : /home2/selectio/public_html/lilyexpresslive/expense-invoice/
Upload File :
Current File : /home2/selectio/public_html/lilyexpresslive/expense-invoice/users-edit.php

<?php  include "header.php";

if(isset($_POST['update_user'])){
        try{
            
$statement = $pdo->prepare("UPDATE users SET name=?, email=?, role=?, password=?, location=?, phone=?, address=? WHERE id=?");
$result=$statement->execute(array($_POST['name'],$_POST['email'],$_POST['role'],$_POST['password'],$_POST['location'],$_POST['phone'],$_POST['address'],$_POST['ids']));

                    
                    
                    if($result){
                        $message = 'User 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 users e where e.id=".$ids);
    $statement->execute();
    $emp_data = $statement->fetchAll(PDO::FETCH_ASSOC);
    $totalData = $statement->rowCount();


if($totalData==1){
?>
<div class="content-wrapper">
        <section class="content-header">
            <h1>Edit User</h1>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Edit User</li>            </ol>
        </section>


        <div class="col-lg-12 alerts">
            <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 class="box box-primary">
                <div class="box-header">
                    <h3 class="box-title">Please fill in the information below</h3>
                </div>
                <div class="box-body">
                    <div class="col-lg-12">

                        <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                                    <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-4">
                                <div class="form-group">
                                    <label class="required" for="name">Name</label>                                    
                                    <input type="text" name="name" value="<?=$emp_data[0]['name']?>" placeholder="Enter the Name" class="form-control tip" id="name"  required="required" />
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="email">Email</label>                                    
                                    <input type="email" name="email" value="<?=$emp_data[0]['email']?>" placeholder="Enter the Email" class="form-control tip" id="email"  required="required" />
                                </div>
                            </div>
                             <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="email">Select Role</label>                                   
                                    <select name="role" class="form-control select2" style="width:100%" id="role" required="required">
<option value="">Selcet Role Name</option>
<?php $statement = $pdo->prepare("SELECT * FROM `tbl_role` where status=1 and id!=1");
        $statement->execute();
        $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); 
        foreach ($location_result as $result) { ?>
            <option value="<?=$result['id']?>" <?php if($emp_data[0]['role']==$result['id']){echo "selected";} ?>><?=$result['role_name']?></option>
      <?php  }?>
</select>
                                </div>
                            </div>
                            
                            
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="password">Password</label>                                   
                                     <input type="password" name="password" placeholder="Enter the Password" value="<?=$emp_data[0]['password']?>"  class="form-control tip" id="password"  required="required" />
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="location">Branch Location</label>                                   
                                     <input type="text" name="location" placeholder="Enter the Branch Location" value="<?=$emp_data[0]['location']?>"  class="form-control tip" id="location"  required="required" />
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="phone">Mobile Number</label>                                   
                                     <input type="number" name="phone" placeholder="Enter the Mobile Number" value="<?=$emp_data[0]['phone']?>"  class="form-control tip" id="phone"  required="required" />
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="address">Address</label>                                   
                                     <textarea type="text" name="address" placeholder="Enter the Address" value=""  class="form-control tip" id="address"  required="required"><?=$emp_data[0]['address']?></textarea>
                                </div>
                            </div>
                        </div>
                        

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

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <?php echo "<a href=users-edit.php?id=".$ids.">
                            <button class='btn btn-primary' >
                            <i class='fa fa-refresh'></i> Reset Form</button></a>"; ?> 
                                            
                             <a href="users.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