Most voted "dompdf" questions
63 questions
Sort by count of
-
0
votes1
answer121
viewsHow to generate two pages with DOMPDF in Laravel
I have to generate the PDF of a 'wallet', and I have to put the front and back in the same file. I have the following source to generate the front: $nome = $cliente->nome.'.pdf'; $pdf =…
-
0
votes1
answer65
viewsSumario to PDF with Dompdf/dompdf
I am using DOMPDF to compile my reports, however I can not relate in summary the contents of respective topics. session_start(); require __DIR__."/vendor/autoload.php"; use Dompdf\Dompdf; use…
-
-1
votes1
answer819
viewshow to change the dompdf orientation
how to change the dompdf orientation. Already include the following code, but it did not work $dompdf->setPaper('A4', 'landscape');
-
-1
votes2
answers914
viewsRedirect to another PDF tab
Hey, I need some help! My current project needs to generate a report from one table, great I did with Dompdf, my doubt is how I make the pdf open in another tab and not in the current tab. The…
-
-1
votes1
answer567
viewsDOMPDF Error generating pdf
I do the same code that the DOMPDF documentation teaches but when I open the page it gives an error of "Error Failed to load PDF document." Can anyone help? This is the code I’m putting <?php…
-
-1
votes1
answer3783
viewsGENERATE PHP REPORT
I have a database in which there are two tables: CUSTOMERS BILLETS In my VIEW (Codeigniter), the user will select a period (Ex. 01/03/2018 to 31/03/2018) to generate a report of all billets that…
-
-1
votes1
answer834
viewsHow do I get the right CSS in DOMPDF?
Good morning Guys, all right? I have 3 files: certificate.png | style.css | Certificate.html I have a method that binds them and PDF the certificate, when printing on the screen with var_dump comes…
-
-1
votes1
answer20
viewserror while passing variables in a controller
Good morning programmers , I have a problem passing two variables from one function to another, I think. Below follows the Code class pdfController extends Controller { public function index($id) {…
-
-1
votes1
answer420
viewsError in dompdf formatting
Good evening everyone, I wonder if anyone can help me with Dompdf. I am using codeigniter and bootstrap as the basis of the project. I need to generate a PDF with a product gallery, the problem is…
-
-2
votes1
answer618
viewschange the dompdf download folder
Could someone help me? I can already use the variable as the name of the download file, but I can’t change the download folder, always low in the download folder.
-
-2
votes2
answers1078
viewsBootstrap CSS issues in DOMPDF
I’m using the DOMPDF to print a CV that picks up the data via $_GET of the URL. When I "print" the file on the screen, just the HTML, I can get exactly what I need, but when I try to turn the…
-
-2
votes1
answer314
views -
-2
votes0
answers17
viewsdompdf save file in directory just using IDE
I’m having some doubts regarding dompdf, I would like to know how to save the pdf file directly by the IDE without the need to use a browser, besides I would like to generate a loop to generate…