|
|
|
ช่วยหน่อยครับ ผมไม่รู้วิธีปรับ mpdf อ่ะครับ ใครรู้วิธีปรับช่วยบอกทีนะครับ |
|
|
|
|
|
|
|
ผมนำเอาโค้ดของเว็ป https://www.thaicreate.com/community/html-to-pdf-and-add-fontthai-mpdf-php.html มาแก้ตามอ่ะครับ พอใส่ส่วน body ของผมเข้าไปเหมือน CSS มันไม่ทำงานเลยอ่ะครับ มันเป็นเพราะอะไรหรอครับ ช่วยดูทีครับ
นี่โค้ดทั้งหมดครับ
Code (PHP)
<?php
include('DBcon.php');
include('mpdf/mpdf.php');
include('datetime.php');
include('fulldate2.php');
ob_start();
?>
<style type="text/css">
<!--
@page rotated { size: landscape; }
.style1 {
font-family: "TH SarabunPSK";
font-size: 18pt;
font-weight: bold;
}
.style2 {
font-family: "TH SarabunPSK";
font-size: 16pt;
font-weight: bold;
}
.style3 {
font-family: "TH SarabunPSK";
font-size: 16pt;
}
.style5 {cursor: hand; font-weight: normal; color: #000000;}
.style9 {font-family: Tahoma; font-size: 12px; }
.style11 {font-size: 12px}
.style13 {font-size: 9}
.style16 {font-size: 9; font-weight: bold; }
.style17 {font-size: 12px; font-weight: bold; }
-->
</style>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
</head>
<body>
<div class=Section2>
<?php
$date_start = '2015-10-01'; /*$_GET["startdate"];*/
$date_end = '2015-10-05'; /*$_GET["enddate"];*/
$strSQL = "SELECT
tb_request.Stokout_date,
tb_equipment.Eq_name,
tb_rqdetail.Rq_quantity1,
tb_unit.Unit_name,
tb_staf.staf_name,
tb_staf.staf_last,
tb_preface.preface_subject,
tb_status.status_id,
tb_rqdetail.note_disapp
FROM
tb_request
INNER JOIN tb_rqdetail ON tb_rqdetail.Req_id = tb_request.Req_id
INNER JOIN tb_equipment ON tb_rqdetail.Eq_id = tb_equipment.Eq_id
INNER JOIN tb_staf ON tb_request.staf_id = tb_staf.staf_id
INNER JOIN tb_unit ON tb_equipment.Unit_id = tb_unit.Unit_id
INNER JOIN tb_preface ON tb_request.preface_id = tb_preface.preface_id
INNER JOIN tb_prefix ON tb_staf.prefix_id = tb_prefix.prefix_id
INNER JOIN tb_status ON tb_rqdetail.status_id = tb_status.status_id
WHERE
(tb_request.Stokout_date BETWEEN '".$date_start."' AND '".$date_end."') AND
tb_rqdetail.status_id = '12'
ORDER BY
tb_request.Stokout_date ASC";
$objQuery = mysql_query($strSQL) or die (mysql_error());
$objResult = mysql_fetch_array($objQuery);
$num_rows = mysql_num_rows($objQuery);
?>
<?
//do
//{
// $item = $item + 1;
// if($item > 7)
// {
// $pdf = new mPDF('th', 'A4-L', '0', 'THSarabun');
// $pdf->AddPage();
// $pdf->SetAutoFont();
// $pdf->SetDisplayMode('fullpage');
// $item = 0;
// $i = 0;
?>
<table width="800" border="0" align="left" cellpadding="0" cellspacing="0">
<tr>
<td align="left" rowspan="5" width="50">
<img src="img/PRANAKORN_LOGO.jpg" width="74" height="134">
</td>
</tr>
<tr>
<td width="291" align="left"><span class="style2"> </span></td>
</tr>
<tr>
<td width="291" align="left"><span class="style2"> </span></td>
</tr>
<tr>
<td width="291" align="left"><span class="style2"><h2>รายงานการจ่ายวัสดุ</h2></span></td>
</tr>
<tr>
<td height="27" align="left"><span class="style2"><h3>คณะบริหารธุรกิจ มหาวิทยาลัยเทคโนโลยีราชมงคลพระนคร </h3></span></td>
</tr>
<tr>
<td></td>
<td height="30" align="left"><span class="style2">ตั้งแต่วันที่ <? echo fulldate($date_start) .' ถึงวันที่ '.fulldate($date_end)?></span></td>
</tr>
</table>
<table bordercolor="#424242" width="1141" height="78" border="1" align="center" cellpadding="0" cellspacing="0" class="style3">
<tr align="center">
<td width="60" align="center" ><strong>วันที่เบิก</strong></td>
<td width="178" align="center" ><strong>ชื่อวัสดุ</strong></td>
<td width="123" align="center" ><strong>จำนวน</strong></td>
<td width="155" align="center" ><strong>หน่วยนับ</strong></td>
<td width="139" align="center" ><strong>ผู้เบิก</strong></td>
<td width="139" align="center" ><strong>คำสั่ง</strong></td>
</tr>
</table>
<?
//}
//$i = $i+14;
do{
?>
<table bordercolor="#424242" width="1141" height="78" border="1" align="center" cellpadding="0" cellspacing="0" class="style3">
<tr align="center">
<td width="60" align="center" ><? echo datetimeth($objResult['Stokout_date']); ?></td>
<td width="178" align="left" ><? echo $objResult['Eq_name']; ?></td>
<td width="123" align="center" ><? echo $objResult['Rq_quantity1']; ?></td>
<td width="155" align="center" ><? echo $objResult['Unit_name']; ?></td>
<td width="139" align="left" ><? echo $objResult['staf_name'].' '.$objResult['staf_last']; ?></td>
<td width="139" align="left" ><? echo $objResult['preface_subject']; ?></td>
</tr>
</table>
<?
}while($objResult = mysql_fetch_array($objQuery));
?>
</div>
</body>
</html>
<?php
$html = ob_get_contents();
ob_end_clean();
$pdf = new mPDF('th', 'A4-L', '0', ''); //การตั้งค่ากระดาษถ้าต้องการแนวตั้ง ก็ A4 เฉยๆครับ ถ้าต้องการแนวนอนเท่ากับ A4-L
$pdf->SetAutoFont();
$pdf->SetDisplayMode('fullpage');
$pdf->WriteHTML($html, 2);
$pdf->Output();
?>
Tag : PHP, HTML/CSS
|
|
|
|
|
|
Date :
2015-11-18 18:46:19 |
By :
nadthasin |
View :
1903 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มีใครรู้เลยอ่อ T^T
|
|
|
|
|
Date :
2015-11-22 19:30:06 |
By :
nadthasin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองย้าย style ด้านบน ให้เข้าไปอยู่ใน <head>....</head> ดูครับ
ไม่เคยทำนะครับ แค่คิดว่า pdf มันน่าจะ sensitive เรืองformat เท่านั้นครับ
ก็เดาไปตามเรื่องตามราว 5555
|
|
|
|
|
Date :
2015-11-23 00:05:30 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณ NewbiePHP ผมย้ายแล้วครับเหมือนเดิมเลยครับไม่มีอะไรเปลี่ยนแปลง
คุณ Bug Hunter คือ pdf ที่ผมจะทำข้อความมันสั้นยาวไม่เท่ากันอ่ะครับ มันไม่ตายตัว บางทีชื่อคำสั่งอาจจะมีตั้งแต่ 1-4 หรือ 5 บรรทัดก็เป็นได้อ่ะครับ
|
|
|
|
|
Date :
2015-11-28 20:27:53 |
By :
nadthasin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|