|
|
|
จะให้ขึ้นบรรทัดใหม่ใน pdf เวลาดึงจากฐานแล้ว แสดงออกมายาวไปเลยจะทำอย่างไรดี |
|
|
|
|
|
|
|
พอดีว่าทำกับ pdf เวลาดึงออกมาแสดง มันจะยาวมาก ไม่ตัดให่เป็นบรรทัดที่สอง สาม ทำอย่างไรดีคะ
โค๊ด ตรงที่รายละเอียดคะ
Code (PHP)
<?
require('thaipdfclass.php');
//require ("../connect.php");
$objConnect = mysql_connect("localhost","root","123") or die("Error Connect to Database");
$objDB = mysql_select_db("contrac");
$strSQL = "SELECT * FROM contact";
$objQuery = mysql_query($strSQL);
mysql_query("SET NAMES TIS620");
$pdf=new ThaiPDF();
$pdf->SetThaiFont();
$pdf->Ln(10);
//$pdf->SetHeader('' , 1, 'R', 1);
$pdf->SetFont('AngsanaNew','B',18);
$pdf->SetTextColor(0,0,0);
//$pdf->SetFooter('งานแนะแนวมหาวิทยาลัยราชภัฏยะลา', 0, 'C',1);
$pdf->Ln(10);
$pdf->AddPage();
$pdf->Cell(10);
$pdf->Image('logo.jpg',95,25,30);
$pdf->Ln(28);
$pdf->SetFont('AngsanaNew','B',17);
$pdf->SetTextColor(0,0,0);
//$pdf->Cell(0,0,'รายชื่อนักศึกษาที่ขอกู้'.' '.'ปีการศึกษา'.' '.$_POST['yearloan'].' '.'ภาคเรียนที่'.' '.$_POST['termloan'],0,1,'C');
$pdf->Ln(10);
$pdf->Ln(5);
$pdf->SetFont('AngsanaNew','',17);
$pdf->SetTextColor(0,0,0);
//$pdf->Cell(0,0,'' ,0,1,'L');
$pdf->Ln(5);
$pdf->Ln(5);
$id= $_GET['id'];
$query3 = "select * from contact where id='2'";
$result3 = mysql_query($query3) or die (mysql_error());
$qr3 = mysql_fetch_array($result3) ;
/* $idcard = $qr3['idcard'];
$name = $qr3['name'];
$phone = $qr3['phone'];
$email = $qr3['email'];
$message = $qr3['message'];
$dateregist = $qr3['dateregist'];
$timeregist = $qr3['timeregist']; */
$pdf->Cell(0,0,' ผู้ร้องเรียน ร้องทุกข์'.' '.iconv('UTF-8','CP874',$_POST['faculty']),0,5,'C');
$pdf->Ln(10);
$pdf->Ln(5);
//$pdf->Cell(0,0,'เลขประจำตัวประชาชน'.' '.iconv('UTF-8','CP874',$qr3['idcard'].' '.'ชื่อผู้ติดต่อ'.' '.$qr3['name'],5,5,'L');
$pdf->Cell(0,0,' เลขประจำตัวประชาชน :'.' '.$qr3['idcard'].' '.'ชื่อผู้ติดต่อ :'.' '.$qr3['name'],0,1,'L');
$pdf->Ln(10);
$pdf->Cell(0,0,' เบอร์โทร :'.' '.$qr3['phone'].' '.'อีเมล์ :'.' '.$qr3['email'],0,1,'L');
$pdf->Ln(10);
$pdf->Cell(0,0,' รายละเอียด :'.' '.$qr3['message'],0,1,'L');
//MultiCell(40,43,iconv("UTF-8","TIS-620",'ข้อความ');
$pdf->Ln(10);
$pdf->Cell(0,0,' วันที่แจ้ง :'.' '.$qr3['dateregist'].' '.'เวลา :'.' '.$qr3['timeregist'],0,1,'L');
/*$pdf->Ln(10);
$pdf->SetFont('FreesiaUPC','B',12);
//$pdf->SetFillColor(200,220,255);
$pdf->Cell(7,5,'ที่',1,0,'C');
$pdf->Cell(20,5,'รหัสนักศึกษา',1,0,'C');
$pdf->Cell(60,5,'ชื่อ - นามสกุล',1,0,'C');
$pdf->Cell(20,5,'ชั้นปีที่',1,0,'C');
$pdf->Cell(70,5,'โปรเเกรม',1,0,'C');*/
$pdf->Ln(5);
//connect DB comv
//$row = mysql_fetch_array($result3);
// row of data Table
//while($row = mysql_fetch_array($objQuery))
//{
/*$pdf->SetFont('FreesiaUPC','',12);
$pdf->Cell(7,5,++$i . '.',1,0,'C');
$pdf->Cell(20,5,$qr3['id'],1,0,'C');
$pdf->Cell(60,5,iconv('UTF-8','CP874',$qr3['idcard'].$qr3['message'].' '.$qr3['name']),1,0,'L');
$pdf->Cell(20,5,iconv('UTF-8','CP874',$qr3['phone']),1,0,'L');
$pdf->Cell(70,5,iconv('UTF-8','CP874',$qr3['email']),1,0,'L');*/
$pdf->Ln();
//}
$pdf->Ln(10);
$pdf->SetFont('','',10);
$pdf->SetTextColor(0,0,0);
//$pdf->Cell(0,0,'' ,0,1,'L');
//$pdf->Cell(0,0,'[งานแนะแนว กองพัฒนานักศึกษา]' ,0,1,'R');
$pdf->Ln();
$pdf->Output();
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2013-07-08 11:12:32 |
By :
NToo |
View :
2458 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนนี้สามารถทำได้แล้ว ใช้ Code (PHP)
$pdf->MultiCell(165,6,' รายละเอียด :'.' '.$qr3['message'],0,1,'C');
แต่ว่ามันเป็นดังรูป จะให้มันเท่ากันทำยังไงคะ
จะให้บรรทัดที่สองสามอยู่ตรง รายละเอียดทำยัไงคะ
|
|
|
|
|
Date :
2013-07-08 11:39:21 |
By :
NToo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนช่วยหน่อยนะคะ
|
|
|
|
|
Date :
2013-07-08 12:46:39 |
By :
NToo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|