ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/sharefilefree/ |
<?php $currPage = "filemanager"; include_once("includes/header.php"); if(!isset($_SESSION['openid_type']) or $_SESSION['openid_type']=='') {//check login include("notfound.php"); exit; } ?> <script src='/js/jquery.dataTables.min.js' type='text/javascript'></script> <script src='/js/jquery.dataTables.bootstrap.js' type='text/javascript'></script> <div class="container"> <div class="col-md-12"> <div class="card border-primary"> <div class="card-header">Files manager</div> <div class="card-body"> <div class="table-responsive mt6"> <table class="table table-bordered table-striped table-hover" id="filesDataTable_user"> <thead><tr> <th>#</th> <th>File Name</th> <th>File Size</th> <th>Upped</th> <th>Downloads</th> <th class='tac w100 table-tools-responsive'>Tools</th></tr> </thead> <tbody> <?php echo "<tr><td>1234</td> <td>Sample Name</td> <td>1234 MB</td> <td>" . date("Y-m-d G:i:s") . "</td> <td>123</td> <td class='tac'> <a class='btn btn-mini btn-success' title='download file directly' href='#'><i class='icon-white icon-download-alt'></i></a> <a class='btn btn-mini btn-primary' title='visit Download-Page' href='#' onclick='window.open(this.href); return false;'><i class='icon-white icon-globe'></i></a> <a class='btn btn-mini btn-danger delFile' title='remove file from server' href='#'><i class='icon-white icon-remove'></i></a> </td></tr>\n"; ?> </tbody></table> </div> </div> </div> </div> </div>