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
/
Types
/
View File Name :
list.php
<?php SYS::DOMAIN("Types"); SYS::CONTROLLER("typesController"); SYS::ADDFUNCTION("display"); $typesInstanceList = new Types(); $perPage = 10; $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"> รายการข้อมูล Admin</h3> --> <div class="btn-group"> <a href="admin.php?page=Types/create" class="btn bg-olive"><i class="fa fa-plus-circle"></i> เพิ่มข้อมูลประเทศผู้ผลิด</a> </div> </div> <div class='table-responsive'> <table class='table table-striped'> <thead> <tr> <th>#</th> <th>ID</th> <th>ประเทศผู้ผลิด </th> </tr> </thead> <tbody> <?php foreach($typesInstanceList->listBy(array("limit"=>"$pageStart,$perPage", "order"=>"typeEn")) as $typesInstance){ ?> <tr> <td style="width:5%;"> <?php echo ($pageStart++) +1; ?> </td> <td style="width:5%;"> <a href="?page=Types/show&id=<?php echo $typesInstance->id; ?>"><?php echo $typesInstance->id; ?></a> </td> <td> <a href="?page=Types/show&id=<?php echo $typesInstance->id; ?>"><?php echo $typesInstance->toString(); ?></a> </td> </tr> <?php } ?> </tbody> </table> </div> <div class="col-lg-12"> <?php $params = array("page"=>"Types/list"); echo paginate2($typesInstanceList->count(),$perPage,$params); ?> </div> </div> </div></div>