|
|
|
จาก code ส่งออก pdf ถ้าข้อมูลเกิน 1 หน้าอยากให้เอาส่วน header มาพิมพ์อีกครั้งทำไงค๊ะ |
|
|
|
|
|
|
|
จาก code ส่งออก pdf ถ้าข้อมูลเกิน 1 หน้าอยากให้เอาส่วน header มาพิมพ์อีกครั้งทำไงค๊ะ
และให้แสดงจำนวนหน้าเป็นแบบ 1/5 นี้ค๊ะทำไง code ยากมาก ขอบคุณล่วงหน้าค๊ะ
ส่วนแสดงส่วนหัว $header=array('รหัสสินค้า','ชื่อ','อีเมลล์','รหัสประเทศ','จำนวนเงิน','ใช้ไป');
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;
}
//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["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();
}
}
//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["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(25,6,number_format($eachResult["Budget"],2),1,0,'R');
$this->Cell(25,6,number_format($eachResult["Budget"],2),1,0,'R');
$this->Ln();
}
//Closure line
$this->Cell(array_sum($w),0,'','T');
}
}
//Page footer
function Footer()
{
//Position at 1.5 cm from bottom
$this->SetY(-15);
//Arial italic 8
$this->SetFont('Arial','I',8);
//Page number
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
$pdf=new PDF();
//Column titles
$header=array('รหัสสินค้า','ชื่อ','อีเมลล์','รหัสประเทศ','จำนวนเงิน','ใช้ไป');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","admin") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer";
mysql_query("SET NAMES tis620");
//$objQuery = mysql_query($strSQL);
$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('AngsanaNew','','angsa.php');
$pdf->AddFont('AngsanaNew','B','angsab.php');
$pdf->AddFont('AngsanaNew','I','angsai.php');
$pdf->SetFont('AngsanaNew','',14);
//*** Table 1 ***//
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-10-24 21:39:06 |
By :
nittaya924 |
View :
1419 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แต่หนูแอบเอาเก็บไว้หมดแล้วค๊ะตัวอย่างที่พี่วินทำไว้ดีมากเลย
พี่วินหรือพี่ที่ทำได้ค๊ะ หนูเอามาทำแล้วค๊ะแต่หนูอ่าน code แบบตามตัวอย่างไม่ได้ มือใหม่จริงๆๆ ค๊ะ หนูทำ php ได้ก็เพราะประยุกต์ตามตัวอย่างที่พี่วินทำไว้ค๊ะ ยังเขียนไม่เก่งเลยค๊ะ
ขอบคุณมากค๊ะ
|
|
|
|
|
Date :
2009-10-24 23:14:03 |
By :
nittaya924 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|