The document is a PHP script that generates a PDF using the FPDF library. It includes a header with the logo and information of Ilocos Sur Polytechnic State College and a footer with the name of Marianne L. Corpuz. The content of the PDF features a poem titled 'A Good Foundation' that reflects on the value of education.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
12 views1 page
Machine 8
The document is a PHP script that generates a PDF using the FPDF library. It includes a header with the logo and information of Ilocos Sur Polytechnic State College and a footer with the name of Marianne L. Corpuz. The content of the PDF features a poem titled 'A Good Foundation' that reflects on the value of education.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
<?
php require('fpdf.php');
class PDF extends FPDF
{ function Header() { $this->Image('ispsclogo.png',25,8,25); $this->SetFont('Helvetica','BI',15); $this->Cell(80); $this->Cell(30,10,'Ilocos Sur Polytechnic State College',0,0,'C'); $this->Ln(5); $this->SetFont('Helvetica','BI',12); $this->Cell(80); $this->Cell(30,10,'Tagudin Campus, Tagudin Ilocos Sur',0,0,'C'); $this->Ln(5); $this->SetFont('Helvetica','BI',10); $this->Cell(80); $this->Cell(30,10,'College of Arts and Sciences',0,0,'C'); $this->Ln(20); }
function Footer() { $this->SetY(-15); $this->SetFont('Arial','I',12); $this->Cell(0,10,'Marianne L. Corpuz',0,0,'C'); } }
$pdf = new PDF();
$pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(0,10,'A Good Foundation',0,0,'C'); $pdf->Ln( 14 ); $pdf->SetFont('Arial','I',12); $pdf->Cell( 0, 0,'Oh I recall my school filled days',0,0,'C' ); $pdf->Ln( 10 ); $pdf->SetFont('Arial','I',12); $pdf->Cell( 0, 0,'I now realize how much it pays',0,0,'C' ); $pdf->Ln( 10 ); $pdf->SetFont('Arial','I',12); $pdf->Cell( 0, 0,'To learn and get an education',0,0,'C' ); $pdf->Ln( 10 ); $pdf->SetFont('Arial','I',12); $pdf->Cell( 0, 0,'It truly gives you a good foundation',0,0,'C' ); $pdf->Output(); ?>