|
|
|
ในโค้ดการ Export SQL to PDF จะเพิ่มลำดับแถวในคอลั่มอย่างไรครับ |
|
|
|
|
|
|
|
ผมทำตามจากลิงก์นี้ครับ
https://www.thaicreate.com/php/php-pdf-mysql-export-pdf.html
แล้วทีนี้ผมเพิ่มแค่คอลัมน์มา 1 คอลัมน์ แต่ผมจะใส่ลำดับแถว 1 2 3 4 ไปเรื่อยๆ เข้าไปด้วย ต้องทำอย่างไรครับ
จากที่เห็น ผมเพิ่มคอลัมน์ได้ แต่ใส่ลำดับแถวในแต่ละแถวไม่เป็นอ่ะครับ
โค้ดทั้งหมดครับ
Code (PHP)
<?php
$s_id = $_GET['s_id'];
$c_id = $_GET['c_id'];
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(25,30,18,30,30,20,62);
//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(25,8,$eachResult["number"],1);
$this->Cell(30,8,$eachResult["std_id"],1);
$this->Cell(18,8,$eachResult["std_pname"],1);
$this->Cell(30,8,$eachResult["std_fname"],1);
$this->Cell(30,8,$eachResult["std_lname"],1);
$this->Cell(20,8,$eachResult["std_nickname"],1,0,'C');
$this->Cell(62,8,$eachResult["std_status"],1,0,'C');
$this->Ln();
}
}
//Better table
function ImprovedTable($header,$data)
{
//Column widths
$w=array(25,18,35,35,20,30);
//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(25,6,$eachResult["std_id"],1);
$this->Cell(18,6,$eachResult["std_pname"],1);
$this->Cell(35,6,$eachResult["std_fname"],1);
$this->Cell(35,6,$eachResult["std_lname"],1,0,'C');
$this->Cell(20,6,number_format($eachResult["std_nickname"],2),1,0,'R');
$this->Cell(30,6,number_format($eachResult["std_mobile"],2),1,0,'R');
$this->Ln();
}
//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(255);
$this->SetDrawColor(128,0,0);
$this->SetLineWidth(.3);
$this->SetFont('','B');
//Header
$w=array(25,18,35,35,20,30);
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$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 $row)
{
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[0],6,$row[0],'LR',0,'L',$fill);
$this->Cell($w[1],6,$row[1],'LR',0,'L',$fill);
$this->Cell($w[2],6,$row[2],'LR',0,'L',$fill);
$this->Cell($w[3],6,$row[3],'LR',0,'L',$fill);
$this->Cell($w[4],6,number_format($row[4]),'LR',0,'C',$fill);
$this->Cell($w[5],6,number_format($row[5]),'LR',0,'R',$fill);
$this->Ln();
$fill=!$fill;
}
$this->Cell(array_sum($w),0,'','T');
}
}
$pdf=new PDF();
//Column titles
$header=array('number','Student ID','Prename','First name','Last name','Nick name','status');
//Data loading
//*** Load MySQL Data ***//
$objConnect = mysql_connect("localhost","root","43528071") or die(mysql_error());
$objDB = mysql_select_db("ce");
mysql_query("set NAMES'tis620'"); //
mysql_query("SET character_set_results=tis620"); //
mysql_query("SET character_set_client=tis620"); //
mysql_query("SET character_set_connection=tis620"); //
$strSQL = "SELECT * FROM student WHERE std_id LIKE '$s_id' AND class_id LIKE '%$c_id%' ORDER BY std_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);
}
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวธรรมดา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('browallia','','browa.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('browallia','B','browab.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('browallia','I','browai.php');
// เพิ่มฟอนต์ภาษาไทยเข้ามา ตัวหนา กำหนด ชื่อ เป็น angsana
$pdf->AddFont('browallia','BI','browaz.php');
// กำหนดฟอนต์ที่จะใช้ อังสนา ตัวธรรมดา ขนาด 12
$pdf->SetFont('browallia','',16);
//*** Table 1 ***//
$pdf->AddPage();
$pdf->Image('logo.gif',65,8,80);
$pdf->Ln(35);
$pdf->BasicTable($header,$resultData);
$pdf->Output("shotdev/mypdf.pdf","F");
?>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2013-06-06 00:31:42 2013-06-06 00:32:28 2013-06-06 00:33:30
|
|
|
|
|
Date :
2013-06-06 00:31:05 |
By :
like-com |
View :
969 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โพสต์ดึก คงนอนกันหมดแล้ว
ทำได้แล้วนะครับ ขอบคุณทุกท่านที่กดอ่าน...
Code (PHP)
//Simple table
function BasicTable($header,$data)
{
//Header
$w=array(10,25,18,25,25,20,50,18);
//Header
for($i=0;$i<count($header);$i++)
$this->Cell($w[$i],7,$header[$i],1,0,'C');
$this->Ln();
$rang = 1;
//Data
foreach ($data as $eachResult)
{
$this->Cell(10,8,$rang++,1,0,'C');
$this->Cell(25,8,$eachResult["std_id"],1);
$this->Cell(18,8,$eachResult["std_pname"],1);
$this->Cell(25,8,$eachResult["std_fname"],1);
$this->Cell(25,8,$eachResult["std_lname"],1);
$this->Cell(20,8,$eachResult["std_nickname"],1,0,'C');
$this->Cell(50,8,$eachResult["std_status"],1,0,'C');
$this->Cell(18,8,$eachResult["note"],1);
$this->Ln();
}
}
|
|
|
|
|
Date :
2013-06-06 03:45:11 |
By :
like-com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2013-06-06 06:33:55 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2013-07-09 16:58:48 |
By :
phattharachanon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|