|
|
|
ผมอยากสร้างรายงานข้อมูลจาก โปรเจ็คเดียวกันแต่แบ่งออกเป็นสองชุดผมเขียนคำสั่งถูกไหมครับ |
|
|
|
|
|
|
|
ต้องเพิ่ม group by 2 คอลัมน์นี้ ใน query ด้วยรึเปล่าครับ ลองตรวจสอบดูครับ
|
|
|
|
|
Date :
2018-09-15 12:19:14 |
By :
chayayol |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คร่าวๆ
Code (SQL)
SELECT // ข้อมูลที่ต้องการ
FROM // จาก Table?
WHERE // เงื่อนไข
GROUP BY // รวมกลุ่มให้ข้อมูล
ORDER BY // เรียงลำดับข้อมูล
Code (PHP)
$data; // ข้อมูลที่ได้จาก database
$tmp_quo = '';
$html = '';
foreach($data as $key => $value){
if($tmp_quo != $value[/*f_id_quo*/] && $key != 0){
$this->mpdf = new mPDF('th','A4');
$this->mpdf->debug = true;
$this->mpdf->WriteHTML($html);
$this->mpdf->Output('uploads/site_infomation/'.$filename); // ตรง Output ถ้าถูกเรียก Header น่าจะทำให้ code หยุดทำงาน
$html = '';
}
$html; // กำหนดข้อมูล html
if($key+1 == sizeof($data)){
$this->mpdf = new mPDF('th','A4');
$this->mpdf->debug = true;
$this->mpdf->WriteHTML($html);
$this->mpdf->Output('uploads/site_infomation/'.$filename); // ตรง Output ถ้าถูกเรียก Header น่าจะทำให้ code หยุดทำงาน
}
}
|
|
|
|
|
Date :
2018-09-15 14:08:53 |
By :
Jatmentz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|