คือเขียนโค๊ดให้มันเป็นตารางในหน้า pdf อะค่ะ แต่ปรากฏว่ามันไม่เปนอ่ะ ต้องเขียนไงอ่ะคะ
คือเขียนโค๊ดให้มันเป็นตารางในหน้า pdf อะค่ะ แต่ปรากฏว่ามันไม่เปนอ่ะ ต้องเขียนไงอ่ะคะ มันกลับเป็นแบบนี้อ่ะ
โค๊ดแบบนี้อ่ะคะ
echo "
<tr>
<td><a href=testpdf.php?id_val=$dbarr[id]>$dbarr[id]</a></td>
<td >$dbarr[name]</td>
<td >$dbarr[lastname]</td>
<td >$dbarr[sumadult]</td>
<td >$dbarr[sumchi]</td>
<td >$dbarr[total]</td>
<td>$badult</td>
</tr>
";
$pdf->Cell(0,20,$dbarr["date"],0,1,"C");
$pdf->Cell(0,20,$dbarr["id"],0,1,"C");
$pdf->Cell(0,20,$dbarr["name"],0,1,"C");
$pdf->Cell(0,20,$dbarr["lastname"],0,1,"C");
$pdf->Cell(0,20,$dbarr["sumadult"],0,1,"C");
$pdf->Cell(0,20,$dbarr["sumchi"],0,1,"C");
$pdf->Cell(0,20,$dbarr["sumtotal"],0,1,"C");
รบกวนหน่อยนะคะTag : PHP
Date :
2011-02-16 14:51:14
By :
fuang
View :
2216
Reply :
9
ได้แล้วค่ะ แต่ว่ามันไม่ยอมขึ้นบรรทัดใหม่ให้อ่ะค่ะ มันต่อกันไปเลย
Code
$pdf->Cell(20,6,$dbarr["date"],1,"C");
$pdf->Cell(20,6,$dbarr["id"],1,"C");
$pdf->Cell(20,6,$dbarr["name"],1,"C");
$pdf->Cell(20,6,$dbarr["lastname"],1,"C");
$pdf->Cell(20,6,$dbarr["adult"],1,"C");
$pdf->Cell(20,6,$dbarr["children"],1,"C");
$pdf->Cell(20,6,$dbarr["total"],1,"C");
เป็นแบบนี้อ่ะ
Date :
2011-02-16 15:08:10
By :
fuang
$pdf->Ln(); ขึ้นบรรทัดใหม่ครับ ถ้าเป็น fpdf
Date :
2011-02-16 15:12:01
By :
ไวยวิทย์
ยังไงละคะเพราะว่ามันเป็นคำสั่งวนลูปอ่ะคะ แต่ลองเปลี่ยนดูละนะคะ แต่มันมะขึ้นไรเลยอ่า อีกรอบนะคะ
Date :
2011-02-16 15:40:01
By :
fuang
https://www.thaicreate.com/php/php-pdf-add-insert-table.html
Code (PHP)
//Data
foreach($data as $row)
{
$this->Cell($w[0],6,$row[0],'LR');
$this->Cell($w[1],6,$row[1],'LR');
$this->Cell($w[2],6,number_format($row[2]),'LR',0,'R');
$this->Cell($w[3],6,number_format($row[3]),'LR',0,'R');
$this->Ln(); // ตรงนี้จะเป็นการขึ้นบรรทัดใหม่เมื่อจบแถวครับ
}
Date :
2011-02-16 15:52:26
By :
ไวยวิทย์
รบกวนอีกทีครับ ถ้าจะผสานเซลล์ในตารางใน pdf ต้องขียนโค้ดอย่างไรครับ
Date :
2011-02-17 16:20:12
By :
coollyheart
Code (PHP)
session_start();
define('FPDF_FONTPATH','font/');
require('fpdf.php');
$pdf=new FPDF();
$pdf->AddFont('angsana','','angsa.php');
$pdf->SetMargins( 10,10,10);
$pdf->AddPage();
$pdf->SetFont('angsana','',14);
include("dbconn.inc.php");
mysql_select_db("db5021207021",$con)or die("Can not Choose DATABASE ?????").mysql_error();
mysql_query("SET NAMES UTF8");
$senddate = $_GET[senddate];
$pdf->Cell( 0 , 6 , iconv( 'UTF-8','cp874' , 'รายงานการส่งข้อความ SMS ประจำวันที่'.$senddate) , 0 , 1 , 'C' );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , 'ลำดับ' ), 1,0,'C');
$pdf->Cell( 50 , 6 , iconv( 'UTF-8','cp874' , 'เบอร์โทรผู้รับ' ) , 1,0,'C' );
$pdf->Cell( 30 , 6 , iconv( 'UTF-8','cp874' , 'ชื่อผู้ส่ง' ) , 1,0,'C' );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , 'ข้อความ' ) , 1,0,'C' );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , 'สถานะการส่ง' ) , 1,0,'C' );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , 'วันที่ส่ง' ) , 1,0,'C' );
$pdf->Ln();
$strSQL = "select * from messages x, teacher y where x.id_t = y.id_t AND x.id_t = '$id'";
$result = mysql_query($strSQL);
while ($row = mysql_fetch_array($result)){
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , $row[id_m] ), 1,0,'C');
$pdf->Cell( 50 , 6 , iconv( 'UTF-8','cp874' , $row[to_m] ), 1,0,'C');
$pdf->Cell( 30 , 6 , iconv( 'UTF-8','cp874' , $row[name_t].' '.$row[lastname_t] ) , 1,0,'C' );
$pdf->MultiCell( 20 , 6 , iconv( 'UTF-8','cp874' , $row[textsend] ) );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , $row[status] ) , 1,0,'C' );
$pdf->Cell( 20 , 6 , iconv( 'UTF-8','cp874' , $row[senddate] ) , 1,0,'C' );
$pdf->Ln();
}
$pdf->Output();
Date :
2011-08-12 04:22:43
By :
โอ๋
รบกวนผู้รู้ช่วยดูหน่อยน่ะค่ะ.....ขอบคุณมาก ๆ เลยค่ะ
Date :
2011-08-12 04:25:27
By :
โอ๋
Load balance : Server 00