ok
Direktori : /home2/selectio/public_html/lilyexpresslive/software/admin/ |
Current File : /home2/selectio/public_html/lilyexpresslive/software/admin/pincode.php |
<?php require_once('header.php'); ?> <!--<section class="content-header">--> <!-- <div class="content-header-left">--> <!-- <h1>View Pincode</h1>--> <!-- </div>--> <!-- <?php if($clientType=="Admin"){ ?>--> <!-- <div class="content-header-right">--> <!-- <a href="pincode-add.php" class="btn btn-primary btn-sm">Add Pincode</a>--> <!-- </div>--> <!-- <?php }?>--> <!--</section>--> <section class="content" style="background-color: white;"> <div class="row"> <div class="col-md-8" style="text-align: center;"> <h4><i class="fa fa-info-circle"></i> Pincode Details</h4> </div> <div class="col-md-4" style="text-align: right;"> <a href="pincode-add.php" class="btn btn-success btn-sm"><i class="fa fa-plus"></i> Add Pincode</a> <a href="pincode-bulk-upload.php" class="btn btn-warning btn-sm"><i class="fa fa-upload"></i> Bulk Upload</a> <a href="excel/pin-code-export.php" class="btn btn-info btn-sm"><i class="fa fa-download"></i> Excel Download</a> </div> </div> <div class="row"> <div class="col-md-12"> <div> <div class="box-body table-responsive"> <table id="example1" class="table table-bordered table-striped"> <thead> <tr> <th width="30">SL</th> <th>Pincode</th> <th>City</th> <th>State</th> <th>Service</th> <th>Air</th> <th>Road</th> <th>TAT</th> <th>Area Code</th> <?php if($clientType=="Admin"){ ?> <th>Action</th> <?php }?> </tr> </thead> <tbody> <?php $i=0; $statement = $pdo->prepare("SELECT * FROM pincode limit 100"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $row) { $i++; ?> <tr> <td><?php echo $i; ?></td> <td><?php echo $row['pin_code']; ?></td> <td><?php echo $row['city']; ?></td> <td><?php echo $row['state']; ?></td> <td><?php echo $row['service']; ?></td> <td><?php echo $row['air']; ?></td> <td><?php echo $row['road']; ?></td> <td><?php echo $row['tat']; ?></td> <td><?php echo $row['area_code']; ?></td> <?php if($clientType=="Admin"){ ?> <td> <a href="pincode-edit.php?id=<?php echo $row['id']; ?>" class="btn btn-primary btn-xs">Edit</a> <a href="#" class="btn btn-danger btn-xs" data-href="pincode-delete.php?id=<?php echo $row['id']; ?>" data-toggle="modal" data-target="#confirm-delete">Delete</a> </td><?php }?> </tr> <?php } ?> </tbody> </table> </div> </div> </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"> <p>Are you sure want to delete this item?</p> </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'); ?>