 |
ใครเคยทำ FPDF เซ้ต footer ในหน้าสุดท้าย {nb} บ้างครับ |
|
 |
|
|
 |
 |
|
Code (PHP)
function Footer()
{
if($this->PageNo() < '{nb}') {
$this->SetY(-20);
$this->SetFont('Arial','',8);
$this->Cell(0,3,"content for the first pages",0,1,'C');//ต้งการให้เงื่อนไขนี้ทำงาน
}
else {
$this->SetY(-20);
$this->SetFont('Arial','',8);
$this->Cell(0,3,"content for the last page",0,1,'C');//always displayed
}
$this->SetFont('Arial','',8);
$this->SetTextColor(0,0,0);
$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,1,'C');
}
ใครทำได้ช่วยทีคับ
Tag : PHP, MySQL, JavaScript, Ajax, jQuery
|
ประวัติการแก้ไข 2012-01-26 15:05:39
|
 |
 |
 |
 |
Date :
2012-01-26 11:20:06 |
By :
toojumbo |
View :
2764 |
Reply :
4 |
|
 |
 |
 |
 |
|
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
หง่า สงสัยมะค่อยมีคนใช้ FPDF มีตัวไหนใช้ง่าย ๆ ดี กว่านี้แนะน้ำ ด้วย คับ ใช้ยาก จังตัวนี้......
|
 |
 |
 |
 |
Date :
2012-01-26 14:54:48 |
By :
toojumbo |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อยากรู้เหมือนกันครับ ช่วยหน่อยครับ ท่านๆ
|
 |
 |
 |
 |
Date :
2012-09-19 16:22:08 |
By :
tonhady |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เผื่อช่วยได้ครับ
<?php
require('fpdf.php');
class PDF extends FPDF
{
//Page header
function Header()
{
//Logo
//$this->Image('logo_pb.png',10,8,33);
//Arial bold 15
$this->SetFont('Arial','B',15);
//Move to the right
$this->Cell(80);
//Title
$this->Cell(30,10,'Title',1,0,'C');
//Line break
$this->Ln(20);
}
//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');
}
}
//Instanciation of inherited class
$pdf=new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Times','',12);
for($i=1;$i<=40;$i++)
$pdf->Cell(0,10,'Printing line number '.$i,0,1);
$pdf->Output('Test.pdf','I');
?>
|
 |
 |
 |
 |
Date :
2012-09-20 23:43:39 |
By :
Krungsri |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ใช้ mPDF ค่ะ
Code (PHP)
$html ='
<style>
.footer_end { position: absolute;
overflow: visible;
left: 40px;
right: 40px;
bottom: 40px;
border: 0px;
}
</style>
';
$html .='<div class="footer_end">ข้อความส่วนท้ายกระดาษ</div>';
|
 |
 |
 |
 |
Date :
2015-02-21 15:54:44 |
By :
pat |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|