I would like to output name of generated Pdf file be this : Kuća_{id value}
Line of code:
$pdf->Output('Kuća_' . $id. '.pdf', 'D');
but outut is : Kuca_{id value}
// set font $pdf->SetFont('freesans');
Font is Ok,I have unicode letters generated in pdf page..Also:
header('Content-Type: text/html; charset=UTF-8');
is set on php page
Tnx