|
|
|
PDF จะแสดงลำดับ record ตามจำนวนข้อมูลที่ได้มา Ex. 1 2 3 4 |
|
|
|
|
|
|
|
ช่อง No. อ่ะครับ
ตาม code
Code (PHP)
$c=0;
while($result = mysql_fetch_array($objQuery))
{$c++;
array_push($resultData,$result);
}
ผมเอา $c ไปใส่ใน
$this->Cell(10,6,$eachResult["$c"],1);
มันดันแสดง วัน เดือน ปี ปัจจุบัน อ่ะครับ ไม่รู้ผมพิมพ์ผิดตรงไหน แนะหน่อยหน่อยครับ
Code (PHP)
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<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;
}
//Simple table
function BasicTable($header,$data,$c)
{
//Header
$w=array(10,90,20,30,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(10,6,$eachResult["$c"],1);
$this->Cell(90,6,$eachResult["Quantity_text_M"],1);
$this->Cell(20,6,$eachResult["Quantity_text_M"],1);
$this->Cell(30,6,$eachResult["Quantity_text_M"],1);
$this->Cell(20,6,$eachResult["Quantity_text_M"],1,0,'C');
$this->Cell(20,6,$eachResult["Quantity_text_M"],1);
$this->Ln();
}
}
}
$pdf=new PDF();
//Column titles
$header=array('No.','Name','Code','Quantity','Quantity_M','Note',);
//Data loading
//*** Load MySQL Data ***//
include("config.inc.php");
$strSQL = "SELECT * FROM transaction inner join Bom
WHERE transaction.ID_Transaction = '".$_GET["ID_Transaction"]."'
AND Bom.ID_Transaction = '".$_GET["ID_Transaction"]."' ";
$objQuery = mysql_query($strSQL);
$resultData = array();
$c=0;
while($result = mysql_fetch_array($objQuery))
{$c++;
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,$c);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : PHP, MySQL, JavaScript, jQuery
|
|
|
|
|
|
Date :
2013-06-06 10:31:43 |
By :
cappuczino |
View :
1023 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ $c เฉยๆ ก็พอครับ
Code (PHP)
$this->Cell(10,6,$c,1);
|
|
|
|
|
Date :
2013-06-06 10:54:12 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอาใหม่
แก้ตรงนี้ครับ
//Simple table
function BasicTable($header,$data,$c)
{
//Header
$w=array(10,90,20,30,20,20);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
//Data
$no = 1;
foreach ($data as $eachResult)
{
$this->Cell(10,6,$no++,1); // แก้ตรงนี้ครับ
$this->Cell(90,6,$eachResult["Quantity_text_M"],1);
$this->Cell(20,6,$eachResult["Quantity_text_M"],1);
$this->Cell(30,6,$eachResult["Quantity_text_M"],1);
$this->Cell(20,6,$eachResult["Quantity_text_M"],1,0,'C');
$this->Cell(20,6,$eachResult["Quantity_text_M"],1);
$this->Ln();
}
}
}
|
|
|
|
|
Date :
2013-06-06 10:56:07 |
By :
cookiephp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อ่อ แล้วPDF นี่ มีปัญหากับภาษาไทยเหรอครับ ทำไม เป้นภาษต่างดาวหมดเลย
|
|
|
|
|
Date :
2013-06-06 11:08:26 |
By :
cappuczino |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|