<?php class cTpstsalDT extends CI_Controller{ public function __construct(){ parent::__construct(); } public function index(){ $this->load->view('common/index'); } function fetchDT(){ $output = ''; $query = ''; $this->load->model('mTpstsalDT'); if($this->input->post('query')){ $query = $this->input->post('query'); } $data = $this->mTpstsalDT->FSaTpstsalDT($query); if(is_array($data) == 1){ foreach($data as $key => $row){ $output .= ' <tr> <td>'.$row->tChain.'</td> <td>'.$row->nQty.'</td> <td>'.$row->nPrice.'</td> </tr> '; } } echo $output; } } ?>
<script> $(document).ready(function(){ load_data_dt(); }); function load_data_dt(query){ $.ajax({ url:"tpstsalDT", method:"POST", data:{query:query}, success:function(data){ $('#odvChain').html(data); } }); } </script>
<div class="table-responsive"> <p>ยอดขายตามสินค้า </p> <table class="table table-striped"> <thead> <tr> <th>ชื่อสินค้า</th> <th>จำนวน</th> <th>มูลค่า</th> </tr> </thead> <tbody> <tr> <td style="width:45%"></td> <td style="width:10%" class="text-right" id="odvChain"></td> <td style="width:15%" class="text-right"></td> </tr> </tbody> </table> </div>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง