如何使用fpdf在所有页面中设置表头?

i want to display table heading in all pages . but in the first page the table heading display other pages not display

                   <?php
                //include connection file
                include_once("connection.php");
                include_once('libs/fpdf.php');

                class PDF extends FPDF
                {
                // Page header
                function Header()
                {
                    // Logo
                    $this->Image('logo.png',10,-1,70);
                    $this->SetFont('Arial','B',13);
                    // Move to the right
                    $this->Cell(80);
                    // Title
                    $this->Cell(80,10,'Employee List',1,0,'C');
                    // Line break
                    $this->Ln(20);
                }

                // Page footer
                function Footer()
                {
                    // Position at 1.5 cm from bottom
                    $this->SetY(-15);
                    // Arial italic 8
                    $this->SetFont('Arial','I',8);
                    // Page number
                    $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
                }
                }



                $db = new dbObj();
                $connString =  $db->getConnstring();
                $display_heading = array('id'=>'ID', 'employee_name'=> 'Name', 'employee_age'=> 'Age','employee_salary'=> 'Salary',);

                $result = mysqli_query($connString, "SELECT id, employee_name, employee_age, employee_salary FROM employee") or die("database error:". mysqli_error($connString));
                $header = mysqli_query($connString, "SHOW columns FROM employee");

                $pdf = new PDF();
                //header
                $pdf->AddPage();
                //foter page
                $pdf->AliasNbPages();
                $pdf->SetFont('Arial','B',12);
                foreach($header as $heading) {
                $pdf->Cell(40,12,$display_heading[$heading['Field']],1);
                }
                foreach($result as $row) {
                $pdf->Ln();
                foreach($row as $column)
                $pdf->Cell(40,12,$column,1);
                }
                $pdf->Output();
                ?>

how to include table heading in all pages.Kindly help me to solve this issue.i try all other method not given the result.