|
|
|
ขอถามPDF กล่องข้อความมันเรียงกันเป็นแนวนอน ถ้าอยากให้มันตัดขึ้นแถวใหม่ต้องทำยังไงคะ ณ ตอนนี้มันเรียงยาวเลยออกนอกกรอบไปเยอะมากเลย |
|
|
|
|
|
|
|
ขอถามPDF กล่องข้อความมันเรียงกันเป็นแนวนอน ถ้าอยากให้มันตัดขึ้นแถวใหม่ต้องทำยังไงคะ ณ ตอนนี้มันเรียงยาวเลยออกนอกกรอบไปเยอะมากเลย
Code (PHP)
$sql = "select * From t_stock ";
$query = odbc_exec ($link,$sql);
while($item = odbc_fetch_array($query)){
$pdf->SetFillColor(255, 255, 127);
$pdf->SetFont('thsarabun', 'B', 16);
$pdf->MultiCell(60, 33, '[LEFT] '.$item['MATNR'], 1, 'L', 1, 0, '', '', true);
}
Tag : PHP, Ms SQL Server 2008, HTML, CSS, PDF, Google Chrome
|
|
|
|
|
|
Date :
2019-07-13 09:23:44 |
By :
mewhappy |
View :
863 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองใช้ table ครอบดูหรือยังครับ
Code (PHP)
<table width="80%" border="1">
<tr>
<td>
<?php
$sql = "select * From t_stock ";
$query = odbc_exec ($link,$sql);
while($item = odbc_fetch_array($query)){
$pdf->SetFillColor(255, 255, 127);
$pdf->SetFont('thsarabun', 'B', 16);
$pdf->MultiCell(60, 33, '[LEFT] '.$item['MATNR'], 1, 'L', 1, 0, '', '', true);
}
?>
</td>
</tr>
</table>
|
|
|
|
|
Date :
2019-07-15 09:01:30 |
By :
nobetaking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|