|
|
|
php + fpdf อยากให้มีข้อมูลออกมาก่อน Header ซึ้งขึ้นมาแค่หน้าแรกเท่านั้น |
|
|
|
|
|
|
|
จากโค๊ด
Code (PHP)
<?php
require('pdf/fpdf.php');
require('dbconn.php');
// สร้างคลาสชื่อ PDF โดยสืบทอดมาจาก FPDF
class PDF extends FPDF {
// เพิ่มฟอนต์ภาษาไทยเข้าไป
function SetThaiFont() {
$this->AddFont('AngsanaNew','','angsa.php');
$this->AddFont('AngsanaNew','B','angsab.php');
$this->AddFont('AngsanaNew','I','angsai.php');
$this->AddFont('AngsanaNew','IB','angsaz.php');
$this->AddFont('CordiaNew','','cordia.php');
$this->AddFont('CordiaNew','B','cordiab.php');
$this->AddFont('CordiaNew','I','cordiai.php');
$this->AddFont('CordiaNew','IB','cordiaz.php');
$this->AddFont('Tahoma','','tahoma.php');
$this->AddFont('Tahoma','B','tahomab.php');
$this->AddFont('BrowalliaNew','','browa.php');
$this->AddFont('BrowalliaNew','B','browab.php');
$this->AddFont('BrowalliaNew','I','browai.php');
$this->AddFont('BrowalliaNew','IB','browaz.php');
$this->AddFont('KoHmu','','kohmu.php');
$this->AddFont('KoHmu2','','kohmu2.php');
$this->AddFont('KoHmu3','','kohmu3.php');
$this->AddFont('MicrosoftSansSerif','','micross.php');
$this->AddFont('PLE_Cara','','plecara.php');
$this->AddFont('PLE_Care','','plecare.php');
$this->AddFont('PLE_Care','B','plecareb.php');
$this->AddFont('PLE_Joy','','plejoy.php');
$this->AddFont('PLE_Tom','','pletom.php');
$this->AddFont('PLE_Tom','B','pletomb.php');
$this->AddFont('PLE_TomOutline','','pletomo.php');
$this->AddFont('PLE_TomWide','','pletomw.php');
$this->AddFont('DilleniaUPC','','dill.php');
$this->AddFont('DilleniaUPC','B','dillb.php');
$this->AddFont('DilleniaUPC','I','dilli.php');
$this->AddFont('DilleniaUPC','IB','dillz.php');
$this->AddFont('EucrosiaUPC','','eucro.php');
$this->AddFont('EucrosiaUPC','B','eucrob.php');
$this->AddFont('EucrosiaUPC','I','eucroi.php');
$this->AddFont('EucrosiaUPC','IB','eucroz.php');
$this->AddFont('FreesiaUPC','','free.php');
$this->AddFont('FreesiaUPC','B','freeb.php');
$this->AddFont('FreesiaUPC','I','freei.php');
$this->AddFont('FreesiaUPC','IB','freez.php');
$this->AddFont('IrisUPC','','iris.php');
$this->AddFont('IrisUPC','B','irisb.php');
$this->AddFont('IrisUPC','I','irisi.php');
$this->AddFont('IrisUPC','IB','irisz.php');
$this->AddFont('JasmineUPC','','jasm.php');
$this->AddFont('JasmineUPC','B','jasmb.php');
$this->AddFont('JasmineUPC','I','jasmi.php');
$this->AddFont('JasmineUPC','IB','jasmz.php');
$this->AddFont('KodchiangUPC','','kodc.php');
$this->AddFont('KodchiangUPC','B','kodc.php');
$this->AddFont('KodchiangUPC','I','kodci.php');
$this->AddFont('KodchiangUPC','IB','kodcz.php');
$this->AddFont('LilyUPC','','lily.php');
$this->AddFont('LilyUPC','B','lilyb.php');
$this->AddFont('LilyUPC','I','lilyi.php');
$this->AddFont('LilyUPC','IB','lilyz.php');
}
// หาก encoding ของภาษาไทยเป็น UTF-8 จะต้องเปลี่ยนให้เป็น TIS-620
function conv($string) {
return iconv('UTF-8', 'TIS-620', $string);
}
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');
}
/*function Header()
{
$w=array(50,40,40,40);
$header=array('รหัส Keyboard','ยี่ห้อ','รุ่น','สถานะ');
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,iconv('UTF-8','TIS-620',$header[$i]),1,0,'C');
$this->Ln();
}*/
//Better table
function ImprovedTable($data)
{
foreach ($data as $eachResult)
{
$this->Cell(50,8,$eachResult["key_id"],1);
$this->Cell(40,8,iconv('UTF-8','TIS-620',$eachResult["key_brand"]),1);
$this->Cell(40,8,$eachResult["key_model"],1);
$this->Cell(40,8,$eachResult["key_status"],1);
$this->Ln();
}
}
}
$pdf = new PDF();
$pdf->SetThaiFont();
// ตั้งค่าขอบกระดาษทุกด้าน 20 มิลลิเมตร
$pdf->SetMargins(20, 20);
// เพิ่มหน้าใหม่เข้าไป
// กำหนดฟอนต์เป็น AngsanaNew ให้ตัวหนา และมีขนาด 20 pt
$header=array('รหัส Keyboard','ยี่ห้อ','รุ่น','สถานะ');
$w=array(50,40,40,40);
//$pdf->SetFont('AngsanaNew', 'B', 20);
$strSQL = "SELECT * FROM keyboard order by key_id ASC";
$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->AddPage();
$pdf->AliasNbPages();
$row=mysql_num_rows($objQuery);
$pdf->SetFont('AngsanaNew', 'B', 20);
$pdf->Cell(0, 0, 'Keyboard', 0, 1, 'C');
$pdf->Ln(10);
$pdf->SetFont('AngsanaNew', '', 16);
$pdf->Cell(0, 0,iconv('UTF-8','TIS-620','มี Keyboard ทั้งหมด :'. $row.' ตัว'), 0, 1, 'L');
$pdf->Ln(10);
$pdf->SetFont('AngsanaNew', 'B', 16);
//$header=array('รหัส Keyboard','ยี่ห้อ','รุ่น','สถานะ');
for($r=0;$r<count($header);$r++)
$pdf->Cell($w[$r],7,iconv('UTF-8','TIS-620',$header[$r]),1,0,'C');
$pdf->Ln();
$pdf->ImprovedTable($resultData);
$pdf->Output("report/keyboard.pdf","F");
?>
อยากให้หัวตารางไปขึ้นทุกหน้าค่ะ ก่อนหน้านี้ใช้ funtion header
แต่ตรงก่อน ตาราง มันไปขึ้นทุกหน้าค่ะ อยากให้
Keyboard กับ มี keyboard ทั้งหมด
ขึ้นแค่หน้าแรกเท่านั้นอ่าค่ะ
Tag : PHP
|
|
|
|
|
|
Date :
2011-09-22 08:11:18 |
By :
Nicorobin |
View :
1479 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรงนึ่งหน้าใหม่ คุณอาจะต้องทำการเรียก function ที่ไว้สำหรับสร้าง header ทุกครั้งครับ
|
|
|
|
|
Date :
2011-09-22 17:50:34 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|