How to generate PDF files Using PHP
How to generate PDF files Using PHP
Click Here to Download PDF Manual de Referencia $pdf = new FPDF(); $pdf->AddPage(); $pdf->SetFont(‘Arial’, ”, 10); //$pdf->Image(‘images/cr_thumb1.png’ , 30 ,8, 50 , 26,’png’); add image $pdf->Cell(18, 10, ”, 0); $pdf->Cell(150, 10, ”, 0); $pdf->SetFont(‘Arial’, ”, 9); $pdf->Cell(50, 10, ‘Date: ‘.date(‘d-m-Y’).”, 0); $pdf->Ln(10); $pdf->SetFont(‘Arial’, ‘BU’, 10); //BU means bold and underline…
View On WordPress












