hjkhhrtertererrrrrerrtertertertertertertert
bnmbnerterterterterterdfgdfgdfgdfgdfgdfgdfgdfgdfg
/
home4
/
digil8bw
/
asciitechsolution.com
/
admin
/
Upload FileeE
HOME
<?php ob_start(); include("../configuration/function-include.php"); $nav = 'managetestimonial'; //Change Display Order..................... if(isset($_REQUEST['orderset'])) { while(list($key,$val) = each($_REQUEST['orders'])) { $sqlorder = "update sh_testimonial set `displayorder` = '".$val."' where id = '".$key."'"; $queryorder = mysqli_query($conn, $sqlorder); } $_SESSION['msg']="Record display order have been updated successfully"; header("Location:".$_SERVER['HTTP_REFERER']); exit; } ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Manage Testimonial :: <?php echo $websitedname;?></title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Bootstrap 3.3.5 --> <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css"> <!-- DataTables --> <link rel="stylesheet" href="plugins/datatables/dataTables.bootstrap.css"> <!-- style --> <link rel="stylesheet" href="dist/css/AdminLTE.min.css"> <link rel="stylesheet" href="dist/css/skins/_all-skins.min.css"> <script> function checkall(form1) { len = datalistfrm.elements.length; var i=0; for( i=0 ; i<len ; i++) { if (datalistfrm.elements[i].type=='checkbox') datalistfrm.elements[i].checked=datalistfrm.check_all.checked; } } function del_prompt(form1,comb) { if(comb=='Delete'){ if(confirm ("Are you sure you want to delete Record(s)")){ datalistfrm.action = "testimonial-del.php?Submit=Delete"; datalistfrm.submit(); } else { return false; } } else if(comb=='Inactive'){ datalistfrm.action = "testimonial-del.php?Submit=Inactive"; datalistfrm.submit(); } else if(comb=='Active'){ datalistfrm.action = "testimonial-del.php?Submit=Active"; datalistfrm.submit(); } } </script> </head> <body class="hold-transition skin-blue sidebar-mini"> <div class="wrapper"> <?php include("top-include.php");?> <!-- Left side column. contains the logo and sidebar --> <?php include("left-include.php");?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Testimonial <small>client testimonial</small> </h1> <ol class="breadcrumb"> <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li> <li><a href="#">Testimonial</a></li> <li class="active">Manage Testimonial</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-xs-12"> <div class="box"> <div class="box-header"> <h3 class="box-title">Manage Testimonial</h3> <?php if(!empty($_SESSION['msg'])){ echo '<p style="color:#11b200;">'.$_SESSION['msg'].'</p>'; } unset($_SESSION['msg']); ?> <hr> </div> <!-- /.box-header --> <form method="post" action="" name="datalistfrm" id="datalistfrm"> <div class="box-body"> <table id="example1" class="table table-bordered table-striped"> <thead style="background:#ebebeb;"> <tr> <th width="10%"><input name="check_all" type="checkbox" onClick="checkall(this.form)" value="check_all" id="check_all"/></th> <th width="5%">#</th> <th width="20%">Name</th> <th width="45%">Description</th> <th width="10%">Status</th> <th width="10%">Action</th> <th width="10%">Remove</th> </tr> </thead> <tbody> <?php $i = 0; $sql_select = "Select * from testimonial"; $query_select = mysqli_query($conn, $sql_select); while($res_select = mysqli_fetch_array($query_select)){ $i++; ?> <tr> <td><input name="ids[]" type="checkbox" value="<?php echo $res_select['id']?>" /></td> <td><?php echo $i;?></td> <td><?php echo $res_select['name'];?></td> <td><?php echo $res_select['description'];?></td> <td align="center"> <?php if($res_select['status'] == 1){ ?> <span class="label label-success">Active</span> <?php } else { ?> <span class="label label-danger">Inactive</span> <?php } ?> </td> <td align="center"><a href="addtestimonial.php?DID=<?php echo $res_select['id'];?>"><i class="fa fa-pencil text-yellow"></i></a></td> <td align="center"><a href="testimonial-del.php?DelID=<?php echo $res_select['id'];?>"><i class="fa fa-trash text-red"></i></a></td> </tr> <?php } ?> </tbody> </table> <div class="clearfix"></div> <hr> <div class="row"> <div class="col-lg-2"> <input type="submit" name="Submit" class="btn btn-block btn-primary btn-success" style="width:130px;" value="Active" onClick="return del_prompt(this.form,this.value)" /> </div> <div class="col-lg-2"> <input type="submit" name="Submit" class="btn btn-block btn-primary btn-warning" style="width:130px;" value="Inactive" onClick="return del_prompt(this.form,this.value)" /> </div> <div class="col-lg-2"> <input type="submit" name="Submit" class="btn btn-block btn-primary btn-danger" style="width:130px;" value="Delete" onClick="return del_prompt(this.form,this.value)" /> </div> <div class="col-lg-6"> </div> <div class="clearfix"></div> </div> </div> </form> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php include("footer-include.php");?> <!-- Control Sidebar --> <?php include("sidebar-include.php");?> </div> <!-- ./wrapper --> <!-- jQuery 2.2.0 --> <script src="plugins/jQuery/jQuery-2.2.0.min.js"></script> <!-- Bootstrap 3.3.5 --> <script src="bootstrap/js/bootstrap.min.js"></script> <!-- DataTables --> <script src="plugins/datatables/jquery.dataTables.min.js"></script> <script src="plugins/datatables/dataTables.bootstrap.min.js"></script> <!-- SlimScroll --> <script src="plugins/slimScroll/jquery.slimscroll.min.js"></script> <!-- FastClick --> <script src="plugins/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="dist/js/app.min.js"></script> <!-- AdminLTE for demo purposes --> <script src="dist/js/demo.js"></script> <!-- page script --> <script> $(function () { $("#example1").DataTable(); $('#example2').DataTable({ "paging": true, "lengthChange": false, "searching": false, "ordering": false, "info": true, "autoWidth": true }); }); </script> </body> </html>