|
|
|
ออกรายงานเป็น pdf ผมต้องการนำรายงาน มีทั้งข้อมูลแบบตัวอักษร ตาราง และรูปภาพที่ผมนำขึ้นมาแสดงใน HTML |
|
|
|
|
|
|
|
Code (PHP)
function BasicTable($header,$data)
{
//Header
$w=array(30,30,55,25,20,20);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Data
foreach ($data as $eachResult)
{
$this->Cell(30,6,$eachResult["CustomerID"],1);
$this->Cell(30,6,$eachResult["Name"],1);
$this->Cell(55,6,$eachResult["Email"],1);
$this->Cell(25,6,$eachResult["CountryCode"],1,0,'C');
$this->Cell(20,6,$eachResult["Budget"],1);
$this->Cell(20,6,$eachResult["Budget"],1);
$this->Ln();
}
}
Go to : PHP PDF - MySQL Export to PDF
|
|
|
|
|
Date :
2011-07-23 09:27:25 |
By :
thaicreate |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|