Файловый менеджер - Редактировать - /home/amitahospital/public_html/amita_master/gallery.php
Назад
<?php include("include/header1.php"); $_SESSION['page_menu']=array('website','gallery'); if(!empty($_POST['gal'])) { $obj->gallery(); } if(!empty($_POST['mul_del'])) { foreach($_POST['mul_del'] as $code) { $id= $code; $photo_sql= "SELECT gal_image FROM gallery WHERE gal_id='".$id."'"; $rs= mysqli_query($obj->mysqli,$photo_sql); $photo= mysqli_fetch_assoc($rs); if(is_file('upload/gallery/'.$photo['gal_image'])) { unlink('upload/gallery/'.$photo['gal_image']); } } $col= 'gal_id'; $table= 'gallery'; $page= 'gallery.php'; $img= "gal_image"; $path= "upload/gallery/"; $obj->delete_multiple($col,$table,$page,$path); } if(!empty($_REQUEST['edit'])) { $val= $_REQUEST['edit']; $row= $obj->getRecord('gallery','gal_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> Gallery 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"><a href="testimonial.php">Testimonial Entry</a></li> <li class="active"> Gallery</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 col-sm-4"> <label for="exampleInputEmail1">Gallery Type</label> <select class="form-control" name="gal_type" required> <?php if ($row['gal_type']) { echo "<option value='$row[gal_type]' selected>$row[gal_type]</option>"; } ?> <option>--Please Select--</option> <option value="Event">Hospital Gallery</option> <option value="Media">Media Gallery</option> </select> </div> <div class="form-group col-sm-8"> <label for="exampleInputEmail1">Gallery Title</label> <input type="text" class="form-control" name="gal_tittle" placeholder="Enter a Gallery Title..." value="<?= isset($row)? $row['gal_tittle'] : ''?>" required> </div> <div class="form-group col-sm-12"> <label>Gallery Image</label> <input type="file" class="form-control" name="gal_image" required> <?php if(isset($row)){ if(is_file('upload/gallery/'.$row['gal_image'])){ echo "<br><br>"; echo "<img src='upload/gallery/$row[gal_image]' height='80'>"; } } ?> </div> <input type="hidden" name="gal" value="1"> <?php if(isset($row)== TRUE){ ?> <input type="hidden" name="gal_id" value="<?= $row['gal_id']?>" /> <input type="hidden" name="gal_image" value="<?= $row['gal_image']?>" /> <?php } ?> <button type="submit" name="submit" class="btn btn-primary"><?= isset($row)? 'Update Gallery' : 'Save Gallery'?></button> <button type="reset" name="reset" class="btn btn-primary">Reset Gallery</button> </div> </form> <!-- /.box-body --> </div> <!-- /.box --> </div> <!-- right column --> <!-- /.row --> </section> <!-- /.content --> <section class="content-header"> <h1> Gallery 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="gallery.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>Gallery Type</th> <th>Gallery Title</th> <th>Date</th> <th>Gallery Image</th> <th>Action</th> </tr> </thead> <?php $res= $obj->getTable('gallery','gal_id desc'); if($res){ $i=1; foreach($res as $gal_data){ ?> <tr> <td scope="col"><input type="checkbox" name="mul_del[]" id="mul_del[]" value="<?= $gal_data['gal_id'] ?>" /></td> <td scope="col"><?= $i++ ?></td> <td scope="col"><?= $gal_data['gal_type'] ?></td> <td scope="col"><?= $gal_data['gal_tittle'] ?></td> <td scope="col"><?= date('d M Y',strtotime($gal_data['gal_date'])) ?></td> <td scope="col"><img src="upload/gallery/<?= $gal_data['gal_image'] ?>" width="60" height="60"/></td> <td class="center"> <a class="btn btn-info" href="gallery.php?edit=<?= $gal_data['gal_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> $(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
|
Настройка