I make a PDF file from PHP. I use FPDF library. I don't have polish letters in result PDF. This is my code:
$pdf = new FPDF();
$pdf->AddPage();
$pdf->AddFont('helvetica','',TEMPLATEPATH.'/fonts/helvetica.php');
$pdf->SetFont('helvetica','');
$text = 'WITAJ ŻÓŁĘDZIU';
$pdf->Write(5,$text);
I use this code (I tried to use iconv but it didn't work). My result is: "Witaj ¿ó³êdziu". What should I do?