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 :: laravel chunk 
Php :: integrate fontawesome in blade laravel 
Php :: php difference between two dates in seconds 
Php :: eloquent batch insert 
Php :: text box should accept only alphanumeric not special characters in php 
Php :: Invalid argument supplied for foreach() in C 
Php :: symfony messenger route 
Php :: nginx codeigniter remove index.php 
Php :: Change date format on view - laravel 
Php :: laravel ecommerce 
Php :: rewrite url to exclude php extension 
Php :: php mail if successful 
Php :: drupal get node id from twig 
Php :: function default value 
Php :: php string to date 
Php :: PHP | Send Attachment With Email 
Php :: php regex format number with commas and decimal 
Php :: microft access request database with pdo 
Php :: php trim 
Php :: How to Customize WooCommerce Breadcrumb 
Php :: laravel seeder 
Php :: image upload in php code with databases 
Php :: link to internal pages in wp php 
Php :: how to save multiple records in database using laravel 
Php :: wc get product category image 
Php :: laravel request input default value 
Php :: add footer code 
Php :: laravel generate unique string 
Php :: laravel where() method 
Php :: laravel merge two arrays helper 
ADD CONTENT
Topic
Content
Source link
Name
2+4 =