How can I create a PDF document with PHP [closed]

1

Hello good day I am looking to create a pdf document of a report that I generate with php and mysql.

in my query I just drag all the user's data and I simply want to pass them in the pdf file.

what tool could you use to create the documents?

    
asked by César González Abrego 06.06.2017 в 23:57
source

1 answer

7

You can use the FPDF library

A basic example

<?php
require('fpdf.php');

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'¡Hola, Mundo!');
$pdf->Output();
?>

Source: link

    
answered by 07.06.2017 в 00:02