ok

Mini Shell

Direktori : /home2/selectio/www/lilyexpresslive/expense-invoice/
Upload File :
Current File : /home2/selectio/www/lilyexpresslive/expense-invoice/client-edit.php

<?php  include "header.php";

if(isset($_POST['update_client'])){
        try{
            
$statement = $pdo->prepare("UPDATE tbl_client SET name=?,mobile=?,address=?,gst=? WHERE id=?");
$result=$statement->execute(array($_POST['client'],$_POST['mobile'],$_POST['address'],$_POST['gst'],$_POST['ids']));
                    
                    if($result){
                        $message = 'Client 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_client 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 Category</h1>
            <ol class="breadcrumb">
                <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li>
                <li class="active">Edit Client</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="category">Client Name</label>                                    
                                    <input type="text" name="client" value="<?=$emp_data[0]['name']?>" placeholder="Enter the Client Name" class="form-control tip" id="client"  required="required" />
                                </div>
                            </div>
                              <div class="col-md-4">
                                <div class="form-group">
                                    <label for="email">Mobile Number</label>                                   
                                     <input type="number" minlength="10" maxlength="10" name="mobile" placeholder="Enter Mobile Number" value="<?=$emp_data[0]['mobile']?>"  class="form-control tip" id="mobile"  />
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="description">Address</label>   
                                    <textarea name="address" placeholder="Enter Description" value=""  class="form-control tip" id="address"><?=$emp_data[0]['address']?></textarea>
                                </div>
                            </div>
                            <div class="col-md-4">
                                <div class="form-group">
                                    <label class="required" for="role">GST Number</label>                                    
                                    <input type="text" name="gst" value="<?=$emp_data[0]['gst']?>"  class="form-control tip" id="role"  required="required" placeholder="Enter the GST Number" />
                                </div>
                            </div>
                        </div>
                        

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

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