|
|
|
สร้างรายงานในรูปแบบ pdf โดยใช้ fpdf แล้วต้องการดึงข้อมูลจากดาต้าเบสมาแสดง แต่พอเขียนดูแล้วมันกลายเป็นภาษาขอม |
|
|
|
|
|
|
|
ขอบคุณนะค่ะ
อันนี้โค้ดค่ะ ซึ่งติดต่อฐานข้อมุลได้ปกติ หากค่าเป็นตัวเลขก็จะแสดงได้ แต่พอเป็นภาษาไทย กลับกลายเป็นภาษาขอมหน่ะค่ะ ต้องปรับโค้ดตรงไหนอ่าค่ะ
Code (PHP)
<?php
require("../FPDF/ThaiPDF.class.php");
$pdf = new ThaiPDF();
$pdf->AddThaiFont("cordia");
$pdf->AddPage();
$pdf->SetLeftMargin(20);
$pdf->SetFont("cordia", 'B', 15);
$pdf->SetXY(85,10);
$pdf->Write(10, "แบบสรุปผลการดำเนินงานโครงการ \n");
$pdf->SetXY(90,17);
$pdf->Write(10, "ประจำปีงบประมาณ \n");
//อ่านข้อมูลจากฐานข้อมูลเพื่อนำไปสร้างตาราง
@mysql_connect("localhost", "root", "leaf") or die(mysql_error());
mysql_select_db("evaluation");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$sql = "SELECT * FROM conclude WHERE project_id = '123928736490' ";
$result = mysql_query($sql);
$oj_re = mysql_fetch_array($result);
$sh_na = "SELECT project_name FROM project WHERE project_id = '123928736490' ";
$rt = mysql_query($sh_na);
$ob_re = mysql_fetch_array($rt);
$pdf->SetFont("cordia", '', 12);
//ส่วนหัวของตาราง
$html = "
<table border=0>
<tr>
<td width=100 align=left>ชื่อโครงการ</td>
<td width=250 align = left>{$ob_re['project_name']} /////////บริเวณที่ต้องการแสดงข้อมูลจากด้าต้าเบสเป็นภาษาไทย
</td>
</tr>
<tr>
<td width=100 align=left>จัดอยู่ในแผนงาน</td>
</tr>
<tr>
<td width=150 align=left>งบประมาณที่ได้รับจัดสรร</td>
<td width=80 align = left>{$oj_re['budget_received']}
</td>
</tr>
<tr>
<td width=150 align=left>งบประมาณที่จ่ายจริง</td>
</tr>
<tr>
<td width=150 align=left>วันเดือนปีที่ดำเนินการ</td>
</tr>
<tr>
<td width=350 align=left>จำนวนกลุ่มเป้าหมายที่จะเข้าร่วมโครงการ</td>
</tr>
<tr>
<td width=100 align=left>จำนวนผู้เข้าร่วมจริง</td>
</tr>
<tr>
<td width=350 align=left>คิดเป็นจำนวนผู้เข้าร่วมโครงการร้อยละ</td>
</tr>
<tr>
<td width=80 align=left><b>การประเมินความพึงพอใจ</b></td>
</tr>
<tr>
<td width=250 align=left>จำนวนผู้ตอบแบบสอบถามทั้งหมด</td>
</tr>
<tr>
<td width=350 align=left>คิดเป็นจำนวนผู้ตอบแบบสอบถาม ร้อยละ</td>
</tr>
<tr>
<td width=350 align=left>ค่าเฉลี่ยผลการประเมินความพึงพอใจ</td>
</tr>
<tr>
<td width=80 align=left><b>การบรรลุวัตถุประสงค์</b></td>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
</tr>
<tr>
<td width=80 align=left><b>การบรรลุเป้าหมาย</b></td>
</tr>
<tr>
<td width=80 align=left><b>ปัญหา/อุปสรรค</b></td>
</tr>
<tr>
<td width=350 align=left><b>แนวทางแก้ไขในการดำเนินงานครั้งต่อไป</b></td>
</tr>
";
$html .= "</table>";
$pdf->WriteHTML($html);
$pdf->Output();
?>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-01-05 09:37:22 |
By :
nuie |
View :
10594 |
Reply :
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Thanks
|
|
|
|
|
Date :
2011-01-05 10:04:16 |
By :
ww |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนเป็น
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
เพราะว่า pdf ไม่รองรับ utf8 ค่าาาา...
น่าจะนะ
|
|
|
|
|
Date :
2011-01-27 12:37:42 |
By :
น้ำทิพย์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากครับ ได้แล้วครับ
|
|
|
|
|
Date :
2011-08-20 01:29:28 |
By :
นายใหญ่ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี code
require("../FPDF/ThaiPDF.class.php");
หน่อยจิค่ะ ตอนนี้ทำอยู่ปวดหัวมาก
|
|
|
|
|
Date :
2011-10-18 14:18:22 |
By :
keawnaja |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$id_job = $_GET['id_job'];
//Connect Database
$host="localhost";
$user_db="root";
$pw_db="1234";
$db="kigroup";
mysql_select_db("kigroup");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
$con=mysql_connect($host,$user_db,$pw_db);
if($con){ mysql_select_db($db);
}else{
echo "Can not connect db Server";
die();
}
$sql = "select * from tb_job where id_job = '$id_job'";//เลือกฐานข้อมูล
$dbquery = mysql_db_query($db, $sql);
$num = mysql_num_rows($dbquery);
//print $sql;
require("fpdf/fpdf.php");
$pdf=new FPDF();
$pdf->SetMargins(0,0,0);
$pdf->AddPage();
//เส้นกรอบ
$pdf->Rect(20, 15, 170, 265 , 'D');
//กำหนดแบบอักษรหัวข้อ
$pdf->AddFont('angsa','','angsa.php');
$pdf->SetFont('angsa','',22);
$pdf->text(80,20,'แบบฟอร์มใบสมัครงาน',0,1,"C");
$pdf->Ln(5);
//กำหนดแบบอักษรรายการ
$pdf->AddFont('angsa','','angsa.php');
$pdf->SetFont('angsa','',16);
//Loop
$result = mysql_fetch_array($dbquery);
$pdf->text(20,30,'1.ตำแหน่งงาน',0,0,"L");
$pdf->text(50,30,$result['position_1']);
$pdf->text(75,30,'2.เงินเดือนที่คาดหวัง');
$pdf->text(110,30,$result['expect_salary']);
$pdf->text(20,40,'3.ชื่อ(ไทย)');
$pdf->text(50,40,iconv('tis620','tis620',$result['fullname_th']));
$pdf->text(20,50,'4.ชื่อ(อังกฤษ)');
$pdf->text(50,50,$result['fullname_en']);
$pdf->text(20,60,'5. เพศ');
$pdf->text(50,60,$result['sex']);
$pdf->text(75,60,'6. อายุ');;
$pdf->text(90,60,$result['age']);
$pdf->text(110,60,'7. ส่วนสูง');
$pdf->text(130,60,$result['height']);
$pdf->text(150,60,'8. น้ำหนัก');
$pdf->text(170,60,$result['weight']);
$pdf->Ln(6);
$pdf->Output();
?>
*************************ทำไมของผมไใฃม่ออกครับดูให้น่อยรับ
|
|
|
|
|
Date :
2013-12-05 14:33:42 |
By :
FFF |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FPDF/ThaiPDF.class.php
หาโหลดได้จากไหนคะ ส่วนมากมีแต่ fpdf
|
|
|
|
|
Date :
2021-02-18 13:24:52 |
By :
A |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เคยใช้เหมือนกัน thaiMpdf_class.php
ใช้แต่ mpdf ที่โหลดทั่วไปนี่แหล่ะครับ มัน ซับพอร์ต ภาษาไทย อยู่แล้ว
|
|
|
|
|
Date :
2021-02-18 17:42:35 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|