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?
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?
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