|
|
|
อยากทราบว่าการ Export ข้อมูลจาก MySQL เป็น Pdf ถ้าจะดึงค่าจาก database 2 ค่า ให้อยู่ใน cell เดียวกัน ทำยังไงครับ |
|
|
|
|
|
|
|
จากตัวอย่างการ Export ข้อมูลจากMySQL เป็นpdf ตามลิ้งค์นี้ https://www.thaicreate.com/php/php-pdf-mysql-export-pdf.html อยากทราบว่า ถ้าจะดึงค่าจาก database 2 ค่า ให้อยู่ใน cell เดียวกัน ทำยังไงครับ
เช่น
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();
}
}
จากตัวอย่างโค้ดข้างบน ถ้าอยากให้ "Name" กับ "Email" อยู่ในcell เดียวกันต้องทำยังไงครับ ขอบคุณครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-05-23 22:41:57 |
By :
maximumoflove |
View :
867 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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"]." ".$eachResult["Email"]),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();
}
}
ลองดูครับ
|
|
|
|
|
Date :
2013-05-24 01:37:01 |
By :
liwkalg |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ
|
|
|
|
|
Date :
2013-05-25 16:12:28 |
By :
maximumoflove |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|