Use dompdf, the problem is that it shows all the pdf content in the browser, what I want is that from a button download directly download it to the client's PC.
Use dompdf, the problem is that it shows all the pdf content in the browser, what I want is that from a button download directly download it to the client's PC.
You have to add the corresponding headers in your PHP file:
<?php
header('Content-Description: File Transfer');
header("Content-type: application/pdf");
header('Content-Disposition: inline; filename=el_nombre_de_mi_archivo.pdf');
readfile('file/el_nombre_de_mi_archivo.pdf');
?>
Greetings!