|
|
|
ช่วยด้วยคะ ติดปัญหา เรื่อง การสร้าง pdf ที่ดึงมาจาก database |
|
|
|
|
|
|
|
Code (PHP)
<?php
require('fpdf.php');
//define('FPDF_FONTPATH','font/');
class PDF extends FPDF
{
//Load data
function LoadData($file)
{
//Read file lines
$lines=file($file);
$data=array();
foreach($lines as $line)
$data[]=explode(';',chop($line));
return $data;
}
//Simple table
function BasicTable($header,$data)
{
//Header
$w=array(15,20,25,30,35,25,25);
//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(15,6,$eachResult["expose_id"],1,0,'C');
$this->Cell(20,6,$eachResult["expose_product"],1,0,'C');
$this->Cell(25,6,$eachResult["expose_number"],1,0,'C');
$this->Cell(30,6 ,$eachResult["expose_name"],1,0,'C');
$this->Cell(35,6,$eachResult["expose_lastname"],1,0,'C');
$this->Cell(25,6,$eachResult["product_code"],1,0,'C');
$this->Cell(25,6,$eachResult["day"],1,0,'C');
$this->Ln();
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(15,20,25,30,35,25,25);
//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(15,6,$eachResult["expose_id"],1,0,'C');
$this->Cell(20,6,$eachResult["expose_product"],1,0,'C');
$this->Cell(25,6,$eachResult["expose_number"],1,0,'C');
$this->Cell(30,6 ,$eachResult["expose_name"],1,0,'C');
$this->Cell(35,6,$eachResult["expose_lastname"],1,0,'C');
$this->Cell(25,6,$eachResult["product_code"],1,0,'C');
$this->Cell(25,6,number_format($eachResult["day"],2),1,0,'C');
$this->Ln();
}
//Closure line
$this->Cell(array_sum($w),0,'','T');
}
//Colored table
function FancyTable($header,$data)
{
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(15,20,25,30,35,25,25);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C',true);
$this->Ln();
//Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
$fill=false;
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
$this->Cell($w[4],6,number_format($row[4]),'LR',0,'R',$fill);
$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('ÃËÑÊ','ÊÔ¹¤éÒ','¨Ó¹Ç¹àºÔ¡','ª×èÍ','¹ÒÁÊ¡ØÅ','ÃËÑÊÊÔ¹¤éÒ','Çѹ·ÕèàºÔ¡');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("dotproject");
mysql_query("set NAMES'UTF8'");// set ÍÑ¡¢ÃÐãËéà»ç¹ Utf8 à¾ÔèÁµÃ§¹ÕéàŤÃѺ ÃѺÃͧä´éªÑǤÃѺ
$strSQL = "SELECT * FROM expose ";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
//************************//
$pdf->AddFont('angsana','','angsa.php');
$pdf->AddFont('angsana','B','angsab.php');
$pdf->AddFont('angsana','I','angsai.php');
$pdf->AddFont('angsana','BI','angsaz.php');
$pdf->SetFont('angsana','',12);
//*** Table 1 ***//
$pdf->AddPage();
//$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
//*** Table 2 ***//
$pdf->AddPage();
//$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->ImprovedTable($header,$resultData);
//*** Table 3 ***//
$pdf->AddPage();
//$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","D");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-03-30 13:45:44 |
By :
aommy |
View :
699 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
error
|
|
|
|
|
Date :
2013-03-30 13:49:31 |
By :
aommy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PHP PDF - MySQL Export to PDF
|
|
|
|
|
Date :
2013-03-31 06:49:04 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|