|
|
|
ขอถามเกี่ยวกับการ export php เป็น pdf โดยการดึงข้อมูล จาก database แล้วจัดตำแหน่งให้อยู่นอกตาราง ทำยังไง ช่วยหน่อยน่ะค่ะ |
|
|
|
|
|
|
|
PHP PDF - MySQL Export to PDF
|
|
|
|
|
Date :
2013-03-21 16:08:57 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆน่ะค่ะ คุณTC Admin & คุณZero ^^
|
|
|
|
|
Date :
2013-03-21 16:56:44 |
By :
arnis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
**ต้องการนำค่า id มาแสดง แต่มันไม่แสดงค่ะ** จะต้องทำยังงัยค่ะ ^^
Code (PHP)
<html>
<head>
<title>PHP PDF</title>
</head>
<body>
<?php
define('FPDF_FONTPATH','font/');
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["tax_land_id"],1);
$this->Cell(30,6,$eachResult["first_name"],1);
$this->Cell(55,6,$eachResult["last_name"],1);
$this->Cell(25,6,$eachResult["tax_land"],1,0,'C');
$this->Cell(20,6,$eachResult["year_tax"],1);
$this->Cell(20,6,$eachResult["codept4"],1);
$this->Ln();
}
}
}
$id=$eachResult["tax_land_id"];
$pdf=new PDF();
//Column titles
$header=array('MemberID','Name','surname','Email','Tel','Password');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("db_LA_Filing");
$strSQL = "SELECT * FROM pay_tax_land,owner WHERE pay_tax_land.codept4=owner.codept4 ";
$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('cordia','','cordia.php');
$pdf->SetFont('cordia','',10);
//*** Table 1 ***//
$pdf->AddPage();
$pdf->Image('logo.png',80,8,33);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
$pdf->SetFont('cordia','',16);
$pdf->setXY( 15, 90 );
$pdf->MultiCell( 0 , 0 , iconv('UTF-8','cp874' ,'ทดสอบ ด้วยการเขียนโดยตรง'));
$pdf->SetFont('cordia','',16);
$pdf->setXY( 15, 120 );
$pdf->MultiCell( 0 , 0 , iconv('UTF-8','cp874' ,$id)); //ค่า id ที่ต้องการแสดง นอกตาราง โดยการจัดตำแหน่ง
$pdf->Output("MyPDF/MyPDF.pdf","F");
?>
PDF Created Click <a href="MyPDF/MyPDF.pdf">::::here:::</a> to Download
</body>
</html>
|
ประวัติการแก้ไข 2013-03-21 17:23:28 2013-03-21 17:24:39
|
|
|
|
Date :
2013-03-21 17:16:27 |
By :
arnis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
และต้องการนำค่า id จาก database ออกมาแสดงนอกตาราง ตามตำแหน่งที่ต้องการ ทำยังไง
ทำแล้วมันไม่แสดงค่ะ
|
|
|
|
|
Date :
2013-03-21 17:26:01 |
By :
arnis |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|