|
|
|
mpdf แสดงข้อมูลครั้งแรกได้ปกติ แต่ถ้าแสดงข้อมูลจากตารางที่2 error ครับ |
|
|
|
|
|
|
|
ขอถามหน่อยครับ ใช้ mpdf แล้วแสดงข้อมูลตารางแรกได้ปกติ แต่ถ้าแสดงตารางที่2 มันขึ้น error ครับ
Code (PHP)
<?php
session_start();
require_once ('config/config.php');
date_default_timezone_set("Asia/Bangkok");
require_once('./tool/mpdf/mpdf.php'); //ที่อยู่ของไฟล์ mpdf.php ในเครื่องเรานะครับ
ob_start(); // ทำการเก็บค่า html นะครับ
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="assets/css/bootstrap.css" rel="stylesheet" />
</head>
<body>
<?php
$sql1 = "SELECT * FROM batch_detail where sc_id='".$_GET["sc_id"]."' and id='".$_GET["id"]."' GROUP BY product_name";
$query1 = mysqli_query($conn,$sql1);
while($result1=mysqli_fetch_array($query1))
{
$id[]=$result1["b_id"];
$name[]=$result1["product_name"];
$pd_id[]=$result1["pd_id"];
$sum[] = $result1["mrp"];
}
$sql2 = "SELECT * FROM batch_detail where sc_id='".$_GET["sc_id"]."' and id='".$_GET["id"]."' GROUP BY date ";
$query2 = mysqli_query($conn,$sql2);
while($result2=mysqli_fetch_array($query2))
{
$bdate[]=$result2["date"];
}
?>
<table width="100%" border="1" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th height="30" style=" text-align: center;">Item</th>
<?php for($i=0;$i<count($bdate);$i++){ ?>
<th class="text-center" width="10%"><?php echo date('d/m/Y',strtotime($bdate[$i])); ?></th>
<?php } ?>
<th width="5%" class="text-center">MRP</th>
</tr>
</thead>
<tbody>
<?php
for($i=0;$i<count($name);$i++){
?>
<tr>
<td height="25"> <?php echo $pd_id[$i]; ?> <?php echo $name[$i]; ?></td>
<?php for($j=0;$j<count($bdate);$j++){
$sql3 = "SELECT * FROM batch_detail WHERE `date`= '$bdate[$j]' AND `product_name` = '$name[$i]' AND sc_id='".$_GET["sc_id"]."' AND id='".$_GET["id"]."'";
$query3 = mysqli_query($conn,$sql3);
$result3 = mysqli_fetch_array($query3) ?>
<td height="25" style=" text-align: center;">
<?php echo number_format($result3['mrp']);?>
</td>
<?php } ?>
<td height="25" width="10%" style=" text-align: center;">
<?php echo $tot = $sum[$i] += $result3["mrp"];
?>
</td>
</tr>
<?php } ?>
<br>
<!--แสดงข้อมูลจากตารางที่2-->
<?php
$sqla1 = "SELECT * FROM batch_detail2 where sc_id='".$_GET["sc_id"]."' and id='".$_GET["id"]."' GROUP BY batch_name";
$querya1 = mysqli_query($conn,$sqla1);
while($result21 = mysqli_fetch_array($querya1))
{
$batch[]=$result21["batch_name"];
$pd_ida[]=$result21["pd_id"];
$sum2[] = $result21["mrp"];
}
$sql21 = "SELECT * FROM batch_detail2 where sc_id='".$_GET["sc_id"]."' and id='".$_GET["id"]."' GROUP BY date ";
$query3 = mysqli_query($conn,$sql21);
while($result3=mysqli_fetch_array($query3))
{
$bdate1[]=$result3["date"];
}
?>
<?php
for($i=0;$i<count($batch);$i++){
?>
<tr>
<td height="25"> <?php echo $pd_ida[$i]; ?></td>
<?php for($j1=0;$j1<count($bdate1);$j1++){
$sql31 = "SELECT * FROM batch_detail2 WHERE `date`= '$bdate1[$j1]' AND `batch_name` = '$batch[$i]' AND sc_id='".$_GET["sc_id"]."' AND id='".$_GET["id"]."'";
$query31 = mysqli_query($conn,$sql31);
$result31 = mysqli_fetch_array($query31) ?>
<td height="25" style=" text-align: center;">
<?php echo number_format($result31['mrp']);?>
</td>
<?php } ?>
</tr>
<?php } ?>
</tbody>
</table>
</body>
</html>
<?php
$html = ob_get_contents();
ob_end_clean();
$pdf = new mPDF('th', 'A4', '7', 'THSaraban'); //การตั้งค่ากระดาษถ้าต้องการแนวตั้ง ก็ A4 เฉยๆครับ ถ้าต้องการแนวนอนเท่ากับ A4-L
$pdf->SetAutoFont();
$pdf->SetDisplayMode('fullpage');
$pdf->WriteHTML($html, 2);
$pdf->Output();
?>
Tag : PHP
|
ประวัติการแก้ไข 2017-08-01 15:53:05
|
|
|
|
|
Date :
2017-08-01 15:37:28 |
By :
golfza034 |
View :
1427 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้า echo เป็น HTML ธรรมดามี Error ไหม๊ครับ
|
|
|
|
|
Date :
2017-08-01 16:31:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|