Are there any specific functions or methods in fpdf that can help with resuming table headers after a page break in PHP?

When using fpdf to generate PDF documents with tables, if a table header spans across multiple pages and a page break occurs, the header may not automatically resume on the next page. To solve this issue, you can use the `Header()` method to manually draw the table header on each page where it is needed.

// Define the Header function to draw the table header
function Header() {
    // Check if the current page is greater than 1
    if ($this->PageNo() > 1) {
        // Draw the table header at the top of the page
        $this->SetFont('Arial', 'B', 12);
        $this->Cell(0, 10, 'Table Header', 0, 1, 'C');
    }
}

// Create a new FPDF instance
$pdf = new FPDF();

// Add a new page
$pdf->AddPage();

// Set the font for the table header
$pdf->SetFont('Arial', 'B', 12);

// Draw the table header on the first page
$pdf->Cell(0, 10, 'Table Header', 0, 1, 'C');

// Generate the rest of the table content
// ...

// Output the PDF
$pdf->Output();