|
|
|
ต้องการสร้างรายงานในรูปแบบ pdf โดยใช้ fpdf แล้วต้องการดึงข้อมูลจากดาต้าเบสมาแสดง ให้ได้ตารางดังรูป |
|
|
|
|
|
|
|
จากตารางข้อมูลดังรูป ผมต้องการจะพิมเอกสาร fpdf ออกมาให้แสดงข้อมูลมาตาง โดยดึงข้อมูลมาจาก DATABASE
อันนี้ส่วนพี่ผมลองเขียนเอง ไม่เข้าใจการดึงตัวแปลมาใช้ให้มันวนแสดงค่าจากฐานข้อมูล
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
</head>
<body>
<?php
require('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;
}
//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,20,20,60,40,30);
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,'C',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'C',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'C',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'C',$fill);
$this->Cell($w[4],6,$row[4],'LR',0,'C',$fill);
$this->Cell($w[5],6,$row[5],'LR',0,'C',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('Name','IDtype','Codetype','Nametype','TimeStart','Total');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("monthly");
$strSQL = "SELECT u.name,jt.id_type, jt.code_type, jt.name_type, jd.timestart, timediff(jd.timeend,jd.timestart) AS total FROM jobdata jd LEFT JOIN jobtype jt ON (jd.id_type = jt.id_type) LEFT JOIN user u ON (u.id_user = jd.id_user) GROUP BY name_type";
$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 3 ***//
$pdf->AddPage();
$pdf->Image('logo3.png',80,8,33);
$pdf->Ln(35);
$pdf->Ln();
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP
|
|
|
|
|
|
Date :
2015-09-15 10:54:26 |
By :
kendocfc |
View :
2658 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าไม่อยากมานั่ง Loop ลองดู mPDF ครับ สามารถแสดงจาก HTML เป็น PDF ได้ครับ
|
|
|
|
|
Date :
2015-09-16 08:48:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|