|
|
|
สอบถามปัญหาเกี่ยวกับ FPDF ขึ้นหน้าใหม่หัวตารางไม่มาด้วยครับ |
|
|
|
|
|
|
|
ลองทำตามกระทู็นี้แล้ว https://www.thaicreate.com/php/forum/045367.html มันติดตรง output ไม่เข้าใจเหมือนกันว่าเพราะอะไร
ใครมีแนวทางอะไรแนะนำหน่อยครับ ตอนนี้ตันมากๆ โค้ดผมก็จะคล้ายๆกับกระทู้ด้านบนครับ
Code (PHP)
require formatPage.php; //include functionเข้ามา ซึ่งก็คือพวกที่คุณประกาศค่า function ต่าง ๆ ของหน้านี้นั่นแหละ
$strSQL = "SELECT * FROM tb_student";
$objQuery = mysql_query($strSQL);
$rows = mysql_num_rows($objQuery); // หาจำนวนแถวก่อน
if(rows>25){ // ถ้าแถวมากกว่า 25 แถวให้ทำการตัดข้อมูลของหน้าที่ 1 ก่อน
$pdf=new PDF();//สร้าง PDF หน้าแรก
//Column titles ใส่หัวตาราง
$header=array('ลำดับที่','ชื่อ','สกุล','ชื่อเล่น','โรงเรียน','ชั้น');
$pdf->SetMargins(10,2,10);//กำหนด Margin
$strSQL = "SELECT * FROM tb_student Limit 0,25";
$objQuery = mysql_query($strSQL);
$pdf->AddPage();//เพิ่มหน้า
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
//*** Table 1 ***//
$pdf->AliasNbPages( 'tp' );//แสดงเลขหน้า
//เพิ่ม font เข้ามาในเอกสาร
$pdf->AddFont('angsana','','angsa.php');
$pdf->AddFont('angsana','B','angsab.php');
//กำหนดแบบอักษรรายการ
$pdf->SetFont('angsana','',14);
$pdf->Cell(0,6,'ตารางรายชื่อนักเรียน',0,1,'C');
$pdf->Ln(5);//ระหว่างบรรทัด
$pdf->BasicTable($header,$resultData);
}else if(rows>25 && rows<=50){
$strSQL1 = "SELECT * FROM tb_student Limit 25,50";
$objQuery1 = mysql_query($strSQL1);
$pdf->AddPage();//เพิ่มหน้า
$resultData1 = array();
for ($1=0;$i<mysql_num_rows($objQuery1);$i++) {
$result = mysql_fetch_array($objQuery1);
array_push($resultData1,$result1);
}
//*** Table 2 ***//
$pdf->AliasNbPages( 'tp' );//แสดงเลขหน้า
//เพิ่ม font เข้ามาในเอกสาร
$pdf->AddFont('angsana','','angsa.php');
$pdf->AddFont('angsana','B','angsab.php');
//กำหนดแบบอักษรรายการ
$pdf->SetFont('angsana','',14);
$pdf->Cell(0,6,'ตารางรายชื่อนักเรียน',0,1,'C');
$pdf->Ln(5);//ระหว่างบรรทัด
$pdf->BasicTable($header,$resultData1);
}else if(rows>50 && rows<=75){
... ทำตาม Table2 จนจบข้อมูล
}
// แสดง output เมื่อลูปข้อมูลจบแล้ว
$pdf->Output();
?>
ทำได้ทุกอย่างที่ต้องการแล้ว เหลือหัวตารางอย่างเดียวครับ ช่วยหน่อยนะครับ เหมือนกำลังจะตกม้าตาย ตอนจบเลย ^^
Tag : PHP, CakePHP, Report Others
|
ประวัติการแก้ไข 2012-07-30 12:24:54 2012-07-30 12:34:00
|
|
|
|
|
Date :
2012-07-30 12:20:13 |
By :
Jor_Jay |
View :
4223 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
require_once('connect.php');
mysql_connect($host,$user,$pw) or die("ติดต่อ HOST ไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client='tis620'");
mysql_query("SET character_set_connection='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
require('thaipdfclass.php');
$pdf=new ThaiPDF();
$pdf->SetThaiFont();
$pdf->AddPage();
class PDF extends ThaiPDF
{
function Header()
{
$this->Image('logo.jpg',135,8,30,30);
$this->SetFont('CordiaNew','B',16);
$this->Ln(30);
$this->Cell(0,7,'รายชื่อผู้สมัครสมาชิกชมรมแบดมินตันบุคลากรมหาวิทยาลัยบูรพา',0,0,'C');
$this->Ln(10);
$this->SetFont('CordiaNew','B',14);
$this->SetTextColor(0,0,0);
$this->Cell(10,7,'ลำดับ',1,0,'C');
$this->Cell(70,7,'ชื่อ-นามสกุล',1,0,'C');
$this->Cell(10,7,'เพศ',1,0,'C');
$this->Cell(55,7,'หน่วยงาน',1,0,'C');
$this->Cell(30,7,'เบอร์ภายใน',1,0,'C');
$this->Cell(30,7,'มือถือ',1,0,'C');
$this->Cell(75,7,'E-mail',1,1,'C');
}
}
$pdf=new PDF('L' , 'mm' , 'A4' );
$pdf->SetThaiFont();
$pdf->AddPage();
$strSQL1 = "SELECT * FROM user ORDER BY office ,name ASC";
$objQuery1=mysql_db_query($dbname,$strSQL1);
$num1=mysql_num_rows($objQuery1);
$t = 1;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$pdf->Cell(10,7,''.$t,1,0,'C');
$pdf->Cell(70,7,' '.$objResult1[academic].$objResult1[name].' '.$objResult1[surname],1,0,'L'); //ชื่อ
$pdf->Cell(10,7,$objResult1[sex],1,0,'C');
$pdf->Cell(55,7,' '.$objResult1[office],1,0,'L');
if($objResult1[intercom]==""){
$pdf->Cell(30,7,' - ',1,0,'L');
}else{
$pdf->Cell(30,7,' '.$objResult1[intercom],1,0,'L');
}
if($objResult1[mobile]==""){
$pdf->Cell(30,7,' - ',1,0,'L');
}else{
$pdf->Cell(30,7,' '.$objResult1[mobile],1,0,'L');
}
if($objResult1[email]==""){
$pdf->Cell(75,7,' - ',1,1,'L');
}else{
$pdf->Cell(75,7,' '.$objResult1[email],1,1,'L');
}
$t++ ;
}
$pdf->Output();
?>
ตามนี้ http://www.edu.buu.ac.th/badminton/report.php
|
|
|
|
|
Date :
2012-07-30 12:38:41 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าวางใน function Header() ใช้
$this->line(5, 90, 290,90);
ถ้าวางในทั่วไป ใช้
$pdf->line(5, 150, 290,150);
อาจจะต้องวางในส่วนของ footer ไม่แน่ใจลองเอาไปวางดูก่อนล่ะกัน
เลข 5 คือจุดเริ่มต้นของ line จากด้านซ้านมือของขอบ
90 ตัวแรก และ 90 ตัวสอง ต้้องเท่ากัน ถ้าไม่เท่าเส้นจะเอียง ลองปรับดู
290 จุดจุดท้ายของ line หรือความยาว
ลองปรับเล่นดู
|
ประวัติการแก้ไข 2012-07-30 13:41:55 2012-07-30 13:43:24
|
|
|
|
Date :
2012-07-30 13:37:32 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่รู้ว่าใช้คำสั่งอะไรแล้ว มีแต่เจอเว็บมา
http://www.id.uzh.ch/cl/zinfo/fpdf/tutorial/tuto3.htm
กดตรง Demo ดูรูปแบบ
เพิ่งนึกได้อีกอย่าง ไปทำรูปเส้นตามต้องการจาก photoshop มาดิ่แล้วเอามาวางแทน น่าจะเข้าท่านะ
นั่งไปนั่งมาทำได้งั้น 555+
ใช้กับ header หรือ footer
$this->SetLineWidth(1);
$this->line(5, 90, 290,90);
ใช้ทั่วไป
$pdf->SetLineWidth(1);
$pdf->line(5, 150, 290,150);
|
ประวัติการแก้ไข 2012-07-30 16:13:13 2012-07-30 16:25:56
|
|
|
|
Date :
2012-07-30 16:10:48 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอบความคิดเห็นที่ : 5 เขียนโดย : apisitp เมื่อวันที่ 2012-07-30 16:10:48
รายละเอียดของการตอบ ::
เจ๋ง อ่า ขอบพระคุณอย่างสูงครับ ตอนนี้ใส่ลำดับที่ปรากฏว่า ลำดับที่ 1 มันไม่แสดงครับ ลองเปลี่ยนไปเปลี่ยนมา แสดงลำดับแรกเป็น 0 งงมากครับ ไม่รู้เป็นอะไร
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP PDF</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<?php
include ('adodb/adodb.inc.php');
define('FPDF_FONTPATH','fpdf/font/');
require ('fpdf/jpdf.inc.php');
class PDF extends FPDF{
function Header()
{
// Logo
$this->Image('image/logo.png',80,8,33);
// Line break
$this->Ln(5);
// Arial bold 15
$this->SetFont('angsana','B',20);
// Title
$this->cell(191, 5, iconv( 'UTF-8','cp874' , 'รายงานข้อมูลสมาชิกฌาปนกิจสังเคราะห์ ตำบลแตล อำเภอศีขรภูมิ จังหวัดสุรินทร์' ),0,0,'C' );
// Line break
$this->Ln(5);
//$this->line(10, 35, 202,35);
$this->Ln(10);
//Header
//$header=array('รหัส','ชื่อ-สกุล','วันเดือนปีเกิด','เพศ','บ้านเลขที่','เบอร์โทร','วันที่สมัคร','หมู่บ้าน');
$this->SetFont('angsana','B',14);
$this->Cell(10,6,$this->conv('ลำดับที่'),1,0,'C');
$this->Cell(23,6,$this->conv('รหัส'),1,0,'C');
$this->Cell(58,6,$this->conv('ชื่อ-สกุล'),1,0,'L');
$this->Cell(20,6,$this->conv('วันเดือนปีเกิด'),1,0,'C');
$this->Cell(10,6,$this->conv('เพศ'),1,0,'C');
$this->Cell(15,6,$this->conv('บ้านเลขที่'),1,0,'C');
$this->Cell(20,6,$this->conv('เบอร์โทร'),1,0,'C');
$this->Cell(20,6,$this->conv('วันที่สมัคร'),1,0,'C');
$this->Cell(15,6,$this->conv('หมู่บ้าน'),1,0,'C');
$this->Ln();
}
//Override คำสั่ง (เมธอด) Footer
function Footer() {
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("52010913693");
mysql_query("SET NAMES 'tis620' ");
$sql = "SELECT * FROM admin Where Admin_Id = '$_COOKIE[Id]' " ;
$result = mysql_query($sql) ;
$rs = mysql_fetch_array($result);
$this->SetLineWidth(0.3);
$this->line(10, 35, 201,35);
$this->line(10, 288, 201,288);
//นับจากขอบกระดาษด้านล่างขึ้นมา 10 มม.
$this->SetY( -10 );
//กำหนดใช้ตัวอักษร Arial ตัวเอียง ขนาด 5
$this->SetFont('angsana','I',14);
$this->Cell(15,10,$this->conv('Create by Username : '.$rs["Admin_User"]),0,0,'L');
$this->Cell(0,10,$this->conv('Create Date Time : '.date("j-n-Y H:i:s")),0,0,'C');
//พิมพ์ หมายเลขหน้า ตรงมุมขวาล่าง
$this->Cell(0,10, 'Page '.$this->PageNo().' of tp' ,0,0,'R');
}
function conv($string) {
return iconv('UTF-8', 'TIS-620', $string);}
//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(10,23,50,20,10,15,20,20,15);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,iconv('UTF-8', 'TIS-620',$header[$i]),1,0,'C');
// $this->Ln();
//Data
foreach ($data as $eachResult)
{
$y=substr($eachResult[MemCpk_Bd],-10,4);
$m=substr($eachResult[MemCpk_Bd],-5,2);
$d=substr($eachResult[MemCpk_Bd],-2,9);
if($m=="00"){$mm = "00";}else if($m=="01"){$mm="ม.ค.";}else if($m=="02"){$mm="ก.พ.";}else if($m=="03"){$mm="มี.ค.";}else if($m=="04"){$mm="เม.ย.";}else if($m=="05"){$mm="พ.ค.";}else if($m=="06"){$mm="มิ.ย.";}else if($m=="07"){$mm="ก.ค.";}else if($m=="08"){$mm="ส.ค.";}else if($m=="09"){$mm="ก.ย.";}else if($m=="10"){$mm="ต.ค.";}else if($m=="11"){$mm="พ.ย.";}else if($m=="12"){$mm="ธ.ค.";}
$yy=$y+543;
$Bday =$d."-".$mm."-".$yy;
$y1=substr($eachResult["MemCpk_Date"],-10,4);
$m1=substr($eachResult["MemCpk_Date"],-5,2);
$d1=substr($eachResult["MemCpk_Date"],-2,9);
if($m1=="01"){$mm1="ม.ค.";}else if($m1=="02"){$mm1="ก.พ.";}else if($m1=="03"){$mm1="มี.ค.";}else if($m1=="04"){$mm1="เม.ย.";}else if($m1=="05"){$mm1="พ.ค.";}else if($m1=="06"){$mm1="มิ.ย.";}else if($m1=="07"){$mm1="ก.ค.";}else if($m1=="08"){$mm1="ส.ค.";}else if($m1=="09"){$mm1="ก.ย.";}else if($m1=="10"){$mm1="ต.ค.";}else if($m1=="11"){$mm1="พ.ย.";}else if($m1=="12"){$mm1="ธ.ค.";}
$yy1=$y1+543;
$day =$d1."-".$mm1."-".$yy1;
$this->Cell(10,6,''.$t,1,0,'C');
$this->Cell(23,6,$eachResult["MemCpk_Id"],1,0,'C');
$this->Cell(58,6,$eachResult["MemCpk_Name"],1,0,'L');
$this->Cell(20,6,$this->conv($Bday),1,0,'C');
$this->Cell(10,6,$eachResult["MemCpk_Sex"],1,0,'C');
$this->Cell(15,6,$eachResult["MemCpk_Add"],1,0,'C');
$this->Cell(20,6,$eachResult["MemCpk_Phone"],1,0,'C');
$this->Cell(20,6,$this->conv($day),1,0,'C');
$this->Cell(15,6,$eachResult["Village_Id"],1,0,'C');
$this->Ln();
$t++;
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(10,23,50,20,10,15,20,20,15);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,iconv('UTF-8', 'TIS-620',$header[$i]),1,0,'C');
// $this->Ln();
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(0);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(10,23,50,20,10,15,20,20,15);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,iconv('UTF-8', 'TIS-620',$header[$i]),1,0,'C',true);
// $this->Ln();
//Color and font restoration
$this->SetFillColor(224,235,255);
$this->SetTextColor(0);
$this->SetFont('');
//Data
foreach ($data as $eachResult)
{
$y=substr($eachResult[MemCpk_Bd],-10,4);
$m=substr($eachResult[MemCpk_Bd],-5,2);
$d=substr($eachResult[MemCpk_Bd],-2,9);
if($m=="00"){$mm = "00";}else if($m=="01"){$mm="ม.ค.";}else if($m=="02"){$mm="ก.พ.";}else if($m=="03"){$mm="มี.ค.";}else if($m=="04"){$mm="เม.ย.";}else if($m=="05"){$mm="พ.ค.";}else if($m=="06"){$mm="มิ.ย.";}else if($m=="07"){$mm="ก.ค.";}else if($m=="08"){$mm="ส.ค.";}else if($m=="09"){$mm="ก.ย.";}else if($m=="10"){$mm="ต.ค.";}else if($m=="11"){$mm="พ.ย.";}else if($m=="12"){$mm="ธ.ค.";}
$yy=$y+543;
$Bday =$d."-".$mm."-".$yy;
$y1=substr($eachResult["MemCpk_Date"],-10,4);
$m1=substr($eachResult["MemCpk_Date"],-5,2);
$d1=substr($eachResult["MemCpk_Date"],-2,9);
if($m1=="01"){$mm1="ม.ค.";}else if($m1=="02"){$mm1="ก.พ.";}else if($m1=="03"){$mm1="มี.ค.";}else if($m1=="04"){$mm1="เม.ย.";}else if($m1=="05"){$mm1="พ.ค.";}else if($m1=="06"){$mm1="มิ.ย.";}else if($m1=="07"){$mm1="ก.ค.";}else if($m1=="08"){$mm1="ส.ค.";}else if($m1=="09"){$mm1="ก.ย.";}else if($m1=="10"){$mm1="ต.ค.";}else if($m1=="11"){$mm1="พ.ย.";}else if($m1=="12"){$mm1="ธ.ค.";}
$yy1=$y1+543;
$day =$d1."-".$mm1."-".$yy1;
$this->Cell(10,6,''.$t,1,0,'C');
$this->Cell(23,6,$eachResult["MemCpk_Id"],1,0,'C');
$this->Cell(58,6,$eachResult["MemCpk_Name"],1,0,'L');
$this->Cell(20,6,$this->conv($Bday),1,0,'C');
$this->Cell(10,6,$eachResult["MemCpk_Sex"],1,0,'C');
$this->Cell(15,6,$eachResult["MemCpk_Add"],1,0,'C');
$this->Cell(20,6,$eachResult["MemCpk_Phone"],1,0,'C');
$this->Cell(20,6,$this->conv($day),1,0,'C');
$this->Cell(15,6,$eachResult["Village_Id"],1,0,'C');
$this->Ln();
$t++;
}
//Closure line
$this->Cell(array_sum($w),0,'','T');
}
//Colored table
function FancyTable($header,$data)
{
//Colors, line width and bold font
$this->SetFillColor(255,0,0);
$this->SetTextColor(0);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(10,23,50,20,10,15,20,20,15);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,iconv('UTF-8', 'TIS-620',$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 $eachResult)
{
$y=substr($eachResult[MemCpk_Bd],-10,4);
$m=substr($eachResult[MemCpk_Bd],-5,2);
$d=substr($eachResult[MemCpk_Bd],-2,9);
if($m=="00"){$mm = "00";}else if($m=="01"){$mm="ม.ค.";}else if($m=="02"){$mm="ก.พ.";}else if($m=="03"){$mm="มี.ค.";}else if($m=="04"){$mm="เม.ย.";}else if($m=="05"){$mm="พ.ค.";}else if($m=="06"){$mm="มิ.ย.";}else if($m=="07"){$mm="ก.ค.";}else if($m=="08"){$mm="ส.ค.";}else if($m=="09"){$mm="ก.ย.";}else if($m=="10"){$mm="ต.ค.";}else if($m=="11"){$mm="พ.ย.";}else if($m=="12"){$mm="ธ.ค.";}
$yy=$y+543;
$Bday =$d."-".$mm."-".$yy;
$y1=substr($eachResult["MemCpk_Date"],-10,4);
$m1=substr($eachResult["MemCpk_Date"],-5,2);
$d1=substr($eachResult["MemCpk_Date"],-2,9);
if($m1=="01"){$mm1="ม.ค.";}else if($m1=="02"){$mm1="ก.พ.";}else if($m1=="03"){$mm1="มี.ค.";}else if($m1=="04"){$mm1="เม.ย.";}else if($m1=="05"){$mm1="พ.ค.";}else if($m1=="06"){$mm1="มิ.ย.";}else if($m1=="07"){$mm1="ก.ค.";}else if($m1=="08"){$mm1="ส.ค.";}else if($m1=="09"){$mm1="ก.ย.";}else if($m1=="10"){$mm1="ต.ค.";}else if($m1=="11"){$mm1="พ.ย.";}else if($m1=="12"){$mm1="ธ.ค.";}
$yy1=$y1+543;
$day =$d1."-".$mm1."-".$yy1;
$this->Cell(10,6,''.$t,1,0,'C');
$this->Cell(23,6,$eachResult["MemCpk_Id"],1,0,'C');
$this->Cell(58,6,$eachResult["MemCpk_Name"],1,0,'L');
$this->Cell(20,6,$this->conv($Bday),1,0,'C');
$this->Cell(10,6,$eachResult["MemCpk_Sex"],1,0,'C');
$this->Cell(15,6,$eachResult["MemCpk_Add"],1,0,'C');
$this->Cell(20,6,$eachResult["MemCpk_Phone"],1,0,'C');
$this->Cell(20,6,$this->conv($day),1,0,'C');
$this->Cell(15,6,$eachResult["Village_Id"],1,0,'C');
$this->Ln();
$t++;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวธรรมดา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana','','angsana.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana','B','angsanab.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('angsana','I','angsanai.php');
//Column titles
//$header=array('รหัส','ชื่อ-สกุล','วันเดือนปีเกิด','เพศ','บ้านเลขที่','เบอร์โทร','วันที่สมัคร','หมู่บ้าน');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("52010913693");
mysql_query("SET NAMES 'tis620' ");
$strSQL = "SELECT * FROM member_chapanakit ORDER BY MemCpK_Date ASC";
$objQuery = mysql_query($strSQL);
$resultData = array();
for ($i=0;$i<mysql_num_rows($objQuery);$i++) {
$t=1;
$result = mysql_fetch_array($objQuery);
array_push($resultData,$result);
}
//************************//
//*** Table 1 ***//
$pdf->AddPage();
$pdf->AliasNbPages( 'tp' );
$pdf->SetFont('angsana','',14);
$pdf->BasicTable($header,$resultData);
//*** Table 2 ***//
$pdf->AddPage();
$pdf->AliasNbPages( 'tp' );
$pdf->SetFont('angsana','',14);
$pdf->ImprovedTable($header,$resultData);
//*** Table 3 ***//
$pdf->AddPage();
$pdf->AliasNbPages( 'tp' );
$pdf->SetFont('angsana','',14);
$pdf->FancyTable($header,$resultData);
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">here</a> to Download
</body>
</html>
|
|
|
|
|
Date :
2012-07-30 17:47:38 |
By :
Jor_Jay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ มั่วจนได้ 555
|
|
|
|
|
Date :
2012-07-30 19:12:55 |
By :
Jor_Jay |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-07-30 19:43:17 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|