One Hat Cyber Team
Your IP :
216.73.216.152
Server IP :
27.254.111.200
Server :
Linux wh-sh59.csloxinfo.com 3.10.0-693.5.2.el7.x86_64 #1 SMP Fri Oct 20 20:32:50 UTC 2017 x86_64
Server Software :
Apache
PHP Version :
5.5.38
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
vhosts
/
oakwine.co.th
/
httpdocs
/
view
/
Tags
/
View File Name :
list.php
<?php SYS::DOMAIN("Tags"); SYS::CONTROLLER("tagsController"); SYS::ADDFUNCTION("display"); $tagsInstanceList = new Tags(); $perPage = 20; $p = isset($_GET["p"]) ? $_GET["p"] : 1 ; $pageStart = ($p-1)*$perPage; ?> <div class="row"><div class="col-lg-12"> <div class="box box-info"> <div class="box-header with-border"> <h3 class="box-title">รายการข้อมูล Tags</h3> <div class="btn-group"> <a href="?page=Tags/create" class="btn bg-olive"><i class="fa fa-plus-circle"></i> เพิ่มข้อมูล Tags</a> </div> </div> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>#</th> <th>ID</th> <th>Tags</th> </tr> </thead> <tbody> <?php foreach($tagsInstanceList->listBy(array("limit"=>"$pageStart,$perPage")) as $tagsInstance){ ?> <tr> <td style="width:5%;"> <?php echo ($pageStart++) +1; ?> </td> <td style="width:5%;"> <a href="?page=Tags/show&id=<?php echo $tagsInstance->id; ?>"><?php echo $tagsInstance->id; ?></a> </td> <td> <a href="?page=Tags/show&id=<?php echo $tagsInstance->id; ?>"><?php echo $tagsInstance->toString(); ?></a> </td> </tr> <?php } ?> </tbody> </table> </div> <div class="col-lg-12"> <?php $params = array("page"=>"Tags/list"); echo paginate2($tagsInstanceList->count(),$perPage,$params); ?> </div> </div> </div></div>