Файловый менеджер - Редактировать - /home/amitahospital/public_html/amita_master/testimonial.php
Назад
<?php include("include/header1.php"); $_SESSION['page_menu']=array('website','testimonial'); if(!empty($_POST['testi'])){ $obj->Testimonial(); } if(!empty($_POST['mul_del'])) { foreach($_POST['mul_del'] as $code) { $id= $code; $photo_sql= "SELECT testi_img FROM testimonial WHERE testi_id='".$id."'"; $rs= mysqli_query($obj->mysqli,$photo_sql); $photo= mysqli_fetch_assoc($rs); if(is_file('upload/test/'.$photo['testi_img'])) { unlink('upload/test/'.$photo['testi_img']); } } if(!empty($_POST['mul_del'])) { $col= 'testi_id'; $table= 'testimonial'; $page= 'testimonial.php'; $img= "testi_img"; $path= "upload/test/"; $obj->delete_multiple($col,$table,$page,$path); } } if(!empty($_REQUEST['edit'])) { $val= $_REQUEST['edit']; $row= $obj->getRecord('testimonial','testi_id',$val); } ?> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar"> <!-- sidebar: style can be found in sidebar.less --> <section class="sidebar"> <!-- Sidebar user panel --> <!-- /.search form --> <!-- sidebar menu: : style can be found in sidebar.less --> <?php include ('include/sidebar.php'); ?> <?php include 'include/admin-menu.php'; ?> </section> <!-- /.sidebar --> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <?php if(!empty($obj->errorMsg)){ ?> <section class="content-header" id="error"> <div class="row"> <div class="col-md-12"> <div class="alert alert-success alert-dismissable" > <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <h4><i class="icon fa fa-check"></i><?php echo $obj->errorMsg; ?></h4> </div> </div> </div> </section> <?php } ?> <section class="content-header"> <h1> Testimonial Entry </h1> <div class="col-lg-12"> <ol class="breadcrumb"> <li><a href="admin-dashboard.php"><i class="fa fa-dashboard"></i> Dashboard</a></li> <li class="active"><a href="news.php">News Entry </a></li> <li class="active">Testimonial Entry </li> </ol> </div> </section> <section class="content"> <div class="row"> <!-- left column --> <div class="col-md-12"> <div class="box box-primary"> <!-- <div class="box-header with-border"> <h3 class="box-title"></h3> </div>--> <!-- form start --> <form role="form" action="" method="post" enctype="multipart/form-data" name="news_form"> <div class="box-body"> <div class="form-group"> <label for="exampleInputEmail1">Name</label> <input type="text" class="form-control" name="name" placeholder="Enter a Client Name..." value="<?= isset($row)? $row['name'] : ''?>" required> </div> <div class="form-group"> <label>Discirption</label> <textarea class="form-control" rows="3" name="testi_msg" id="Discirption" placeholder="Enter Discirption..." autocomplete="off" onkeyup="livesearch('Discirption','[^A-Za-z0-9(){}.*, ]')" onkeydown="livesearch('Discirption','[^A-Za-z0-9(){}.*, ]')"><?= isset($row)? $row['testi_msg'] : ''?></textarea> </div> <div class="form-group"> <label>Testimonial Image</label> <input type="file" class="form-control" name="testi_img"> <?php if(isset($row)){ if(is_file('upload/test/'.$row['testi_img'])){ echo "<br><br>"; echo "<img src='upload/test/$row[testi_img]' height='80'>"; } } ?> </div> <input type="hidden" name="testi" value="1"> <?php if(isset($row)== TRUE){ ?> <input type="hidden" name="testi_id" value="<?= $row['testi_id']?>" /> <input type="hidden" name="testi_img" value="<?= $row['testi_img']?>" /> <?php } ?> <button type="submit" name="submit" class="btn btn-primary"><?= isset($row)? 'Update Message' : 'Save Message'?></button> <button type="reset" name="reset" class="btn btn-primary">Reset Message</button> </div> </form> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- right column --> <!-- /.row --> </section> <!-- /.content --> <section class="content-header"> <h1> Testimonial View <small></small> </h1> </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"></h3> </div> <!-- /.box-header --> <?php if(!empty($_REQUEST['msg'])){ echo "<center style='margin-top:20px; color:green;'><h2>".$_REQUEST['msg']."</h2></center>"; } ?> <div class="box-body"> <form id="vnews" action="testimonial.php" method="post"> <div class="table-responsive"> <table id="example1" class="table table-bordered table-striped table-responsive"> <thead> <tr> <th>#</th> <th>Sr. No.</th> <th>Name</th> <th>Date</th> <th>Message</th> <th>Image</th> <th>Action</th> </tr> </thead> <?php $res= $obj->getTable('testimonial','testi_id desc'); if($res){ $i=1; foreach($res as $testi_data){ ?> <tr> <td scope="col"><input type="checkbox" name="mul_del[]" id="mul_del[]" value="<?= $testi_data['testi_id'] ?>" /></td> <td scope="col"><?= $i++ ?></td> <td scope="col"><?= $testi_data['name'] ?></td> <td scope="col"><?= date('d M Y',strtotime($testi_data['testi_date'])) ?></td> <td scope="col"><?= $testi_data['testi_msg']?></td> <td scope="col"><img src="upload/test/<?= $testi_data['testi_img'] ?>" width="60" height="60"/></td> <td class="center"> <a class="btn btn-info" href="testimonial.php?edit=<?= $testi_data['testi_id']?>"> <i class="glyphicon glyphicon-edit icon-white"></i> Edit </a> <a class="btn btn-danger" href="javascript:muldelete()"> <i class="glyphicon glyphicon-trash icon-white"></i> Delete </a> </td> </tr> <?php } } ?> </table> </div> </form> </div> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- /.col --> </div> <!-- /.row --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <?php include 'include/footer.php'; ?> <div class="control-sidebar-bg"></div> </div> <!-- ./wrapper --> <script src="plugins/jQuery/jQuery-2.1.4.min.js"></script> <script type="text/javascript"> function muldelete() { element_lenght= vnews.elements.length; for(i=0;i<element_lenght;i++) { if(vnews.elements[i].name=="mul_del[]") { if(vnews.elements[i].checked==true) { if(confirm("Are you sure delete record(s)?")) { this.vnews.submit(); break; } } } } } </script> <script src="js/jquery.min.js"></script> <script type="text/javascript" src="js/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="js/jquery.dateselect.js"></script> <script src="js/jquery-ui.min.js"></script> <script> $.widget.bridge('uibutton', $.ui.button); </script> <script src="bootstrap/js/bootstrap.min.js"></script> <script src="plugins/sparkline/jquery.sparkline.min.js"></script> <script src="plugins/jvectormap/jquery-jvectormap-1.2.2.min.js"></script> <script src="plugins/jvectormap/jquery-jvectormap-world-mill-en.js"></script> <script src="plugins/knob/jquery.knob.js"></script> <script src="plugins/datatables/jquery.dataTables.min.js"></script> <script src="plugins/datatables/dataTables.bootstrap.min.js"></script> <script src="plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js"></script> <script src="plugins/slimScroll/jquery.slimscroll.min.js"></script> <script src="plugins/fastclick/fastclick.min.js"></script> <script src="dist/js/app.min.js"></script> <script src="//cdn.ckeditor.com/4.5.9/full/ckeditor.js"></script> <script> CKEDITOR.replace('Discirption'); $.widget.bridge('uibutton', $.ui.button); $(function () { $("#example1").DataTable(); $('#example2').DataTable({ "paging": true, "lengthChange": false, "searching": false, "ordering": true, "info": true, "autoWidth": true }); }); $(function () { $("#example1").DataTable(); $('#example2').DataTable({ "paging": true, "lengthChange": false, "searching": false, "ordering": true, "info": true, "autoWidth": true }); }); </script> <script src="js/core.js"></script> <script src="js/zebra_datepicker.js"></script> </body> </html>
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 0.06 |
proxy
|
phpinfo
|
Настройка