ช่วยด้วยครับ PHP PDF/FPDF - MySQL Export to PDF ภาษาไทย มันเป็นภาษาต่างดาวครับ
<?php
require 'fpdf.php';
define('PDF_FONTPATH','font/');
$db= new PDO('mysql:host=localhost;dbname=waterwork','root','bestterry38');
class PDF extends FPDF{
function header(){
$this->Setfont('Arial','B',14);
$this->Cell(276,10,'TEST PaGE Margin',0,0,'C');
$this->Ln();
$this->Setfont('Arial','',12);
$this->Cell(276,10,'sterrt Employee',0,0,'C');
$this->Ln();
}
function footer(){
$this->SetY(-15);
$this->Setfont('Arial','',8);
$this->Cell(0,10,'Page'.$this->PageNo().'/{nb}',0,0,'C');
}
function headertable(){
$this->Cell(40,10,iconv('UTF-8','TIS-620','รหัส'),1,0,'C');
$this->Cell(40,10,iconv('UTF-8','TIS-620','ชื่อ'),1,0,'C');
$this->Cell(40,10,iconv('UTF-8','TIS-620','นามสกุล'),1,0,'C');
$this->Cell(40,10,iconv('UTF-8','TIS-620','บ้านเลขที่'),1,0,'C');
$this->Cell(40,10,iconv('UTF-8','TIS-620','หมู่ที่'),1,0,'C');
$this->Cell(40,10,'UserId',1,0,'C');
$this->Ln();
}
function viewTable($db){