|
|
|
สงสัย FPDF ว่าทำอย่างๆงให้แสดงรายการในตารางให้ลำดับเท่าๆกัน มีรูปตัวอย่างให้ชมครับ |
|
|
|
|
|
|
|
[url]สงสัย FPDF ว่าทำอย่างๆงให้แสดงรายการในตารางให้ลำดับเท่าๆกัน มีรูปตัวอย่างให้ชมครับ
ผมอยากให้แสดงลำดับตารางเท่าๆกัน เช่น มี 36 รายการ ให้แสดงหน้าละ 15 รายการ และหน้าท้ายให้แสดงรายการที่เหลือตามรูปภาพเลยครับ
ขออนุญาติเจ้าของลิงค์นะครับ : https://www.thaicreate.com/php/forum/081714.html#00289436
หน้าที่ 1 จะมี 1-15 ลำดับ
หน้าที่ 2 จะมี 16-30 ลำดับ
หน้าที่ 3 จะมี 31-36 ลำดับ
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();
?>
[/url]
Tag : PHP, HTML/CSS, CakePHP
|
ประวัติการแก้ไข 2013-03-15 14:56:26
|
|
|
|
|
Date :
2013-03-15 14:53:46 |
By :
nattkhanesha |
View :
1213 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
บอกหลักการน่ะครับ เข้าใจว่าน่าจะใช้การตัดเองครับ เช่น ทุก ๆ 15 รายการ ก็ให้ไปเริ่ม Page ใหม่ครับ เหมือนการแบ่งหน้าครับ
|
|
|
|
|
Date :
2013-03-15 15:15:53 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มีตัวอย่างให้ศึกษาป่าวครับ
|
|
|
|
|
Date :
2013-03-15 15:26:20 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รอการช่วยเหลืออยู่ครับ
|
|
|
|
|
Date :
2013-03-18 08:18:53 |
By :
nattkhanesha |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|