<?php
require("FPDF/ThaiPDF.class.php");
$pdf = new ThaiPDF();
$pdf->AddThaiFont();
$pdf->AddPage();
$pdf->SetPageNo('left', 'Page : ', '/', 'jasmine', 'I', '12');
$pdf->AddPageNo();
$pdf->SetFont("angsana", 'B' , 18);
$pdf->SetXY(70,10);
$pdf->MultiCell( 0 , 0 , iconv( 'UTF-8','cp874' , 'FM 06 - แบบประเมินการฝึกงานของนักศึกษา' ) );
$pdf->SetLeftMargin(30);
$pdf->SetTopMargin(50);
$pdf->SetFont("cordia", '' , 16);
$html1 = "
<img src=\"logodoc1.jpg\" width=30>
<br /><br /><br /><br /><br />
<table border=1>
<tr>
<td width=600>
1. ผลที่ได้จากการฝึกงาน (ความรู้ ทักษะ ความคิด)
</td>
</tr>
<tr>
<td width=600>
{$objResult['txt1']}
</td>
</tr>
<tr>
<td width=600>
2. ปัญหาและอุปสรรคในการฝึกงาน (ระบุเป็นข้อๆ)
</td>
</tr>
<tr>
<td width=600>
{$objResult['txt2']}
</td>
</tr>
<tr>
<td width=600>
3. ข้อคิดเห็นและข้อเสนอแนะ
</td>
</tr>
<tr>
<td width=600>
{$objResult['txt3']}
</td>
</tr>
</table>";
$pdf->WriteHTML($html1);
$pdf->Output();