Reputation: 43
I'm generating some PDF on my site (with FPDF library) and I can't manage to change the title displayed in the browser (not the one when downloading, but the one corresponding to the HTML)
<title></title>
Have you any idea ?
Upvotes: 2
Views: 15181
Reputation: 2733
Yes you can set/change the title by:
$pdf->SetTitle('Title');
Reference: http://www.fpdf.org/es/doc/settitle.htm
Upvotes: 15