I'm trying to get a page title to show up when outputting a pdf with fpdf.
Currently I only get the path to the .php file I'm using to create the pdf. e.g.
www.mydomain/inc/pdf/php
If I output anything other than the fpdf code e.g.
<title>This is my title</title>
or
<title><? echo $title ?></title>
I get an error like this...
Some data has already been output, can't send PDF
This is because you can only output fpdf data on the page apparently. So is it possible to add a title tag somehow with fpdf or rather in conjunction with fpdf?
It would just be much nicer to see a page title rather than the path to my pdf.php file.
Cheers