Roshyo
Roshyo

Reputation: 43

Title a PDF page [FPDF]

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

Answers (1)

Plamen Nikolov
Plamen Nikolov

Reputation: 2733

Yes you can set/change the title by:

$pdf->SetTitle('Title');

Reference: http://www.fpdf.org/es/doc/settitle.htm

Upvotes: 15

Related Questions