|
|
|
รบกวนหน่อยค่ะ อยากดึงข้อมูลจากหลายๆคอลัมน์มาไว้ใน ช่องเดียวกันได้ fpdf ต้องเขียนยังไงคะ มีรูปค่ะ |
|
|
|
|
|
|
|
เขียนแบบนี้อ่ะคะ มันได้แค่อันเดียว
$pdf->Cell(55,$a, iconv( 'TIS620','cp874' ,$objResult1["ch1"]),1,0,'L');
ถ้าเขียนแบบนี้ มันไม่ออกเลยอ่ะค่ะ
$pdf->Cell(55,$a, iconv( 'TIS620','cp874' ,$objResult1["ch1"],$objResult1["ch2"]),1,0,'L');
Tag : PHP
|
|
|
|
|
|
Date :
2013-10-08 11:18:43 |
By :
pampam |
View :
666 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยด้วยนะคะ
|
|
|
|
|
Date :
2013-10-08 11:37:00 |
By :
pampam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$pdf->Cell(55,$a, iconv( 'TIS620','cp874' ,$objResult1["ch1"].$objResult1["ch2"]),1,0,'L');
|
|
|
|
|
Date :
2013-10-08 11:40:14 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำไว้นานแล้ว ใช้ thaipdfclass ติดยังไงเด๋วช่วยกันได้
http://www.edu.buu.ac.th/nbt2/search/art.php
<?
require_once('connectdb.php');
require('thaipdfclass.php');
$pdf=new ThaiPDF();
$pdf->SetThaiFont();
$pdf->AddPage();
$pdf->Cell(0,6,''.$uName,0,0,'C');
class PDF extends ThaiPDF
{
function Header()
{
$this->Image('logo.jpg',89,8,30,30);
$this->SetFont('CordiaNew','B',20);
$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,6,'ลำดับ',1,0,'C');
$this->Cell(80,6,'ชื่อ-นามสกุล',1,0,'C');
$this->Cell(80,6,'สถาบัน',1,0,'C');
$this->Cell(25,6,'หมายเหตุ',1,1,'C');
}
}
$pdf=new PDF('P' , 'mm' , 'A4' );
$pdf->SetThaiFont();
$pdf->AddPage();
$strSQL1 = "SELECT * FROM tb_student where major like '%ศิลปกรรมศึกษา%' ORDER BY `institute` ASC";
$objQuery1=mysql_db_query($dbname,$strSQL1);
$num1=mysql_num_rows($objQuery1);
$t = 1;
while($objResult1 = mysql_fetch_array($objQuery1))
{
$id = $objResult1['id'];
$uuu = $objResult1['institute'];
$status = $objResult1['status'];
$pdf->Cell(10,6,''.$t,1,0,'C');
$pdf->Cell(80,6,' '.$objResult1[titleName].$objResult1[firstName].' '. $objResult1[lastName],1,0,'L'); //ชื่อ
$pdf->Cell(80,6,' '.$objResult1[institute],1,0,'L');
if($status > 1){
$pdf->Cell(25,6,' ',1,1,'L');
}else{
$pdf->Cell(25,6,'ไม่ได้ลงทะเบียน',1,1,'L');
}
$t++ ;
}
$pdf->Output();
?> <STRONG>Code (PHP)</STRONG>
|
|
|
|
|
Date :
2013-10-08 11:47:25 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ ได้แล้วๆ เย้ๆ แล้วถ้าอยากได้ ลูกน้ำคั่น ต้องใส่ยังไงหรอคะ
|
|
|
|
|
Date :
2013-10-08 11:55:11 |
By :
pampam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
$pdf->Cell(55,$a, iconv( 'TIS620','cp874' ,$objResult1["ch1"].','.$objResult1["ch2"]),1,0,'L');
|
|
|
|
|
Date :
2013-10-08 12:10:29 |
By :
itpcc |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|