Search
 
SCRIPT & CODE EXAMPLE
 

PHP

HTML to PDF in PHP

<?php require 'vendor/autoload.php';
use SpipuHtml2PdfHtml2Pdf;
$html2pdf = new Html2Pdf();
ob_start();
include('data.php');
$html_code = ob_get_clean();
$html2pdf->writeHTML($html_code);
$html2pdf->output();
?>
Comment

php html to pdf

Try php mpdf

  
CMD :    composer require mpdf/mpdf
  
  // Require composer autoload
require_once __DIR__ . '/vendor/autoload.php';
// Create an instance of the class:
$mpdf = new MpdfMpdf();

// Write some HTML code:
$mpdf->WriteHTML('Hello World');

// Output a PDF file directly to the browser
$mpdf->Output();
Comment

convert html to pdf using php.php

<?php
  //Step 1. Make a HTML file and define markup

  echo '
  <html>
<head>
<link href="style.css" type="text/css" rel="stylesheet"/>
</head>
<body>
<div id="wrapper">

<div id="html_div">
 <form action="generate_pdf.php" method="post">
  <input type="text" name="name" placeholder="Enter Name">
  <br>
  <input type="text" name="email" placeholder="Enter Email">
  <br>
  <input type="text" name="age" placeholder="Enter Age">
  <br>
  <input type="text" name="country" placeholder="Enter Country">
  <br>
  <input type="submit" name="submit_val" value="GENERATE PDF">
 </form>
</div>

</div>
</body>
</html>
';

//Step 2. Make a PHP file to generate PDF
namespace Dompdf;
require_once 'dompdf/autoload.inc.php';

if(isset($_POST['submit_val']))
{
$dompdf = new Dompdf(); 
$dompdf->loadHtml('
<table border=1 align=center width=400>
<tr><td>Name : </td><td>'.$_POST['name'].'</td></tr>
<tr><td>Email : </td><td>'.$_POST['email'].'</td></tr>
<tr><td>Age : </td><td>'.$_POST['age'].'</td></tr>
<tr><td>Country : </td><td>'.$_POST['country'].'</td></tr>
</table>
');
$dompdf->setPaper('A4', 'landscape');
$dompdf->render();
$dompdf->stream("",array("Attachment" => false));
exit(0);
}
?>
//CSS
body
{
 margin:0 auto;
 padding:0px;
 text-align:center;
 width:100%;
 font-family: "Myriad Pro","Helvetica Neue",Helvetica,Arial,Sans-Serif;
}
#wrapper
{
 margin:0 auto;
 padding:0px;
 text-align:center;
 width:995px;
}
#wrapper h1
{
 margin-top:50px;
 font-size:45px;
 color:#585858
}
#wrapper h1 p
{
 font-size:18px;
}
#wrapper a
{
 color:blue;
 font-size:20px;
}
#html_div input[type="text"]
{
 margin-top:5px;
 width:250px;
 height:35px;
 padding:10px;
}
#html_div input[type="submit"]
{
 background-color:#585858;
 width:250px;
 height:35px;
 border:none;
 margin-top:5px;
 color:white;
 margin-left:-5px;
}
Comment

convert html to pdf php

Important: Please note that this answer was written in 2009 and it might not be the most cost-effective solution today in 2019. Online alternatives are better today at this than they were back then.

Here are some online services that you can use:

PDFShift
Restpack
PDF Layer
DocRaptor
HTMLPDFAPI
HTML to PDF Rocket
Have a look at PrinceXML.

It's definitely the best HTML/CSS to PDF converter out there, although it's not free (But hey, your programming might not be free either, so if it saves you 10 hours of work, you're home free (since you also need to take into account that the alternative solutions will require you to setup a dedicated server with the right software)

Oh yeah, did I mention that this is the first (and probably only) HTML2PDF solution that does full ACID2 ?

PrinceXML Samples
Comment

PREVIOUS NEXT
Code Example
Php :: ajax load more button wordpress 
Php :: laravel creat new model 
Php :: get current user in symfony 
Php :: laravel not run test 
Php :: laravel filter array 
Php :: softdelete laravel 
Php :: laravel validate change password 
Php :: drupal 8 entity_view 
Php :: laravel migration change column order 
Php :: php input onchange 
Php :: php multi elseif statement ternary 
Php :: laravel migration longtext length 
Php :: wp wc php out of stock product to bottom 
Php :: PHP strtok — Tokenize string 
Php :: how to import in laravel excel command 
Php :: twig to pdf 
Php :: rodar migration laravel 
Php :: laravel dirty words check 
Php :: jwt return true 
Php :: multiple primary key defined laravel 
Php :: laravel pest assertstatus 
Php :: how to close login route in laravel 
Php :: register_uninstall_hook 
Php :: install pdo mysql in alpine-apache php 5.6 
Php :: check date is in the last 24 hours? 
Php :: PDO::ATTR_EMULATE_PREPARES = true Security issue 
Php :: php $_server 
Php :: increase file upload size limit 
Php :: laravel compile assets 
Php :: php config file 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =