|
|
|
รบกวน ดู ไฟล์ ส่งออก PHP to PDF หน่อย ครับ ขึ้นว่า หน้าเว็บไม่ทำงาน |
|
|
|
|
|
|
|
อ้างอิงจาก https://www.thaicreate.com/community/html-to-pdf-and-add-fontthai-mpdf-php.html
โหลด ไฟล์ mpdf มาแล้วครับ ตามเว็บ
Code (PHP)
<?php
require('connect.php');
require_once('mpdf/mpdf.php');
ob_start();
?>
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>
<?php
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Times','B',16);
$pdf->Cell(0,10,'Welcome to www.ThaiCreate.Com',0,1);
$pdf->Cell(0,20,'Version 2009',0,1,"C");
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP, HTML/CSS, Action Script, Ajax, jQuery
|
|
|
|
|
|
Date :
2016-03-28 10:49:56 |
By :
rock_rock |
View :
1470 |
Reply :
5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
require('connect.php');// file connect.php path ถูกต้องไหมครับ ?
require_once('mpdf/mpdf.php');// file mpdf.php path ถูกต้องไหมครับ ?
ob_start();//ผมสงสัยว่าทำไมต้องมี ob_start(); ครับ(ส่วนตัวถ้าเป็นเรื่อง session นี้ผมไม่ค่อยแนะนำใช้ ob_start ครับ มันเหมือนซ่อนขยะไว้ใต้พรม ส่วนตัวนะ )
|
|
|
|
|
Date :
2016-03-28 11:33:32 |
By :
geidtiphong |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 1 เขียนโดย : geidtiphong เมื่อวันที่ 2016-03-28 11:33:32
รายละเอียดของการตอบ ::
ไฟล์ connect พาท ถูกต้องครับ ลองดึงข้อมูลแล้วครับ
อันนี้เป็นไฟล์ รบกวนช่วยดูให้หน่อยครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>
<?php
include("config.inc.php");
require('fpdf/fpdf.php');
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(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["num_run"],1);
$this->Cell(30,6,$eachResult["Customers_ID"],1);
$this->Cell(55,6,$eachResult["size"],1);
$this->Cell(25,6,$eachResult["detail"],1,0,'C');
$this->Cell(20,6,$eachResult["price"],1);
$this->Cell(20,6,$eachResult["sum"],1);
$this->Ln();
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(20,30,55,25,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(20,6,$eachResult["num_run"],1);
$this->Cell(30,6,$eachResult["Customers_ID"],1);
$this->Cell(55,6,$eachResult["size"],1);
$this->Cell(25,6,$eachResult["detail"],1,0,'C');
$this->Cell(25,6,number_format($eachResult["price"],2),1,0,'R');
$this->Cell(25,6,number_format($eachResult["sum"],2),1,0,'R');
$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(20,30,55,25,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('num_run','Customers_ID','size','detail','price','sum');
//Data loading
//*** Load MySQL Data ***//
$strSQL = "SELECT * FROM Customer
";
$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->SetFont('Arial','',10);
//*** 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","F");
?>
PDF Created Click <a href="/MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
|
|
|
|
|
Date :
2016-03-28 13:56:43 |
By :
rock_rock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สรุป fpdf หรือ mpdf มันค่อนข้างจะแตกต่างกัน เอาให้แน่ครับ??
|
|
|
|
|
Date :
2016-03-28 15:01:48 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|