| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
| <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
| <link type="text/css" rel="stylesheet" href="../fpdf.css">
|
| This method is used to render the page header. It is automatically called by AddPage() and
|
| should not be called directly by the application. The implementation in FPDF is empty, so
|
| you have to subclass it and override the method if you want a specific processing.
|
| <pre><code>class PDF extends FPDF
|
| $this->SetFont('Arial', 'B', 15);
|
| $this->Cell(30, 10, 'Title', 1, 0, 'C');
|
| <a href="footer.htm">Footer</a>
|
| <hr style="margin-top:1.5em">
|
| <div style="text-align:center"><a href="index.htm">Index</a></div>
|