|
|
|
ถ้าต้องการให้ pdf ออกแบบนี้ ต้องเขียนยังไง ประมาณว่า select ข้อมูลมาจากฐานข้อมูลแล้วให้มันออกแบบนี้น่ะคะ |
|
|
|
|
|
|
|
คนละฟอร์เเมตกันเลย select มาเเสดงเป็น pdf ไม่ได้หรอกจ๊ะนอกจากจะทำเป็นรีพอร์ตแล้วแปลงไฟล์เอา
|
|
|
|
|
Date :
2010-06-21 11:26:41 |
By :
pjnarubase |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็น Crystal report คือการทำ report แบบ multiple column
แล้ว export ออกเป็น PDF ไม่รุว่าใช้ REPORT GENERATOR อะไรคะ
|
|
|
|
|
Date :
2010-06-21 11:33:36 |
By :
blurEyes |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Quote:คนละฟอร์เเมตกันเลย select มาเเสดงเป็น pdf ไม่ได้หรอกจ๊ะนอกจากจะทำเป็นรีพอร์ตแล้วแปลงไฟล์เอา
ทำได้นะคะ select ข้อมูลจากฐานข้อมูลมาทำเป็น pdf ดังตัวอย่าง
Code (PHP)
define('FPDF_FONTPATH','font/');
require('fpdf.php');
$host="myhost";
$user="user";
$pass="passwd";
$linkdb=@mysql_connect($host,$user,$pass) or die ("ไม่สามารถติดต่อฐานข้อมูลได้");
$sql="USE mytable;";
$result=mysql_query($sql);
mysql_query("set charset tis620");
class PDF extends FPDF
{
}
$pdf=new PDF();
$pdf->AddPage();
$pdf->SetFont('Arial','',12);
$pdf->AddFont('angsana','','angsana.php');
$sql1 ="SELECT * from custermer";
$query = mysql_query($sql1);
while($re = mysql_fetch_array($query)){
$pdf->Cell(40,6,$re["name"],'','','L');
$pdf->Cell(10,6,$re["tel"],'','','');
$pdf->Ln();
}
$pdf->Output();
mysql_close($linkdb);
|
|
|
|
|
Date :
2010-06-21 12:00:38 |
By :
amster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|