FPDF ค้นหาข้อมูลในตาราง จาก Keyword ภาษาไทย ผ่านทางตัวแปรไม่ได้, ,, เป็นเพราะอะไรอ่าครับ
ตอนนี้ Code เขียนอย่างไรบ้างครับ
Date :
2012-01-16 11:39:12
By :
webmaster
Code (PHP)
<?php
require("../../../fpdf/ThaiPDF.class.php");
$pdf = new ThaiPDF();
$pdf->AddThaiFont("angsana");
$pdf->AddPage('P' ,'A4'); //กำหนดขนาดกระดาษ แนวตั้ง A4
$pdf->SetFont("angsana", 'B', 16); //กำหนดตัวอักษร รูปแบบ ขนาด
$pdf->SetLeftMargin(10); //กำหนดการย่อหน้า
$pdf->Cell( 0 , 4 , iconv( 'UTF-8','cp874' , 'ทดสอบ ' ) , 0 , 1 , 'C' );
//while($data = mysql_fetch_array($result)) {
$pdf->Cell( 0 , 9 , iconv( 'UTF-8','cp874' , 'สรุปรายงานการซ่อม '.$_POST[name] ) , 0 , 1 , 'C' );
$pdf->Cell( 0 , 4 , iconv( 'UTF-8','cp874' , 'ตั้งแต่วันที่ ' .$_POST[date_befor].' '.$_POST[month_befor].' '.$_POST[year_befor].' '.'ถึงวันที่ '.$_POST[date_after].' '.$_POST[month_after].' '.$_POST[year_after] ) , 0 , 1 , 'C' );
$pdf->SetFont("angsana", 'B', 14); //กำหนดตัวอักษร รูปแบบ ขนาด
$pdf->Write(10, iconv( 'UTF-8','cp874' ,"1. สรุปยอดสถานะเครื่องซ่อมและงานซ่อม"));
//กำหนดตำแหน่งรูปภาพตามแกน XY
$x = $pdf->GetX() + 90;
$y = $pdf->GetY() - 25;
//กำหนด path ไฟล์ภาพ
$pdf->Image("../../../fpdf/tutorial/logo.png", $x, $y, 30);
$pdf->SetFontSize(14);
$pdf->Write(10, "\n");
//ส่วนที่ใช้คำสั่งติดต่อกับฐานข้อมูลและการดึงข้อมูลจากฐานข้อมูล
@mysql_connect("localhost", "root", "root") or die(mysql_error('Fail!!'));
mysql_select_db("project");
iconv('UTF-8','cp874',$w = $_GET["name"]);
$sql = mysql_query("SELECT COUNT(service_customer_agency) FROM data_service WHERE service_customer_agency='".$_GET["name"]."' ");
mysql_query("SET NAMES UTF-8");
$res = mysql_fetch_array($sql);
$records = $res[0];
//ส่วนที่ใช้สร้างหัวตารางและกำหนด Coloumn
$html = iconv('UTF-8','cp874',"<table border=1 align=center>
<tr>
<td width=50 bgcolor=#cccccc align=center ><b>ลำดับ</b></td>
<td width=150 bgcolor=#cccccc align=center><b>สถานะงาน</b></td>
<td width=150 bgcolor=#cccccc align=center><b>จำนวนเครื่องซ่อม(เครื่อง)</b></td>
<td width=130 bgcolor=#cccccc align=center><b>คิดเป็นอัตราร้อยละ</b></td>
</tr>
<tr>
<td width=50 align=center >1</td>
<td width=150 align=center >งานทั้งเดือน</td>
<td width=150 align=center >$records</td>
<td width=130 align=center >dasds</td>
</tr>
<tr>
<td width=50 align=center >2</td>
<td width=150 align=center >งานซ่อมเสร็จ</td>
<td width=150 align=center >dasd</td>
<td width=130 align=center >dasds</td>
</tr>
<tr>
<td width=50 align=center >3</td>
<td width=150 align=center >งานค้างซ่อม</td>
<td width=150 align=center >dasd</td>
<td width=130 align=center >dasds</td>
</tr>"
);
$html .= iconv('UTF-8','cp874',
"<tr>
<td width=480 align=right>รวมทั้งสิ้น $grand_total</td>
</tr></table>");
$pdf->WriteHTML($html);
$pdf->Output();
?>
ตามนี้เลยครับ
ปล, ตัวแปร $records เป็นตัวแสดงผลการนับนะครับ ^^
Date :
2012-01-16 11:44:41
By :
Thecs
Code (PHP)
@mysql_connect("localhost", "root", "root") or die(mysql_error('Fail!!'));
mysql_select_db("project");
mysql_query("SET NAMES UTF-8");
iconv('UTF-8','cp874',$w = $_GET["name"]);
$sql = "SELECT COUNT(service_customer_agency) FROM data_service WHERE service_customer_agency='".$_GET["name"]."' ";
$result = mysql_query($sql);
echo $sql;
$res = mysql_fetch_array($result );
$records = $res[0];
ลองดูแบบนี้ครับ หรือไม่เอา SQL ออกมาดูครับ
Date :
2012-01-16 13:23:29
By :
webmaster
Load balance : Server 03