con algo como esto
Código PHP:
Ver originalpublic function Header($title) { // Logo
$this->Image(K_PATH_IMAGES.'logo_example.jpg', 10, 8, 15);
// Set font
$this->SetFont('helvetica', 'B', 20);
// Move to the right
$this->Cell(80);
// Title
$this->Cell(30, 10, "$title", 0, 0, 'C');
// Line break
$this->Ln(20);
y cuando llames a la función Header le pasas el valor que necesitas.
saludos.