Php-mysql Course

dompdf is an HTML to PDF converter, requires PHP 5.0+ (5.3 recommended). This class is useful when you want to create PDF files with PHP.
Just create the content in HTML format, then use dompdf class to create PDF file(s) with that content.
- Download dompdf 0.6.0 beta 3.

Features:

- Handles most CSS 2.1 and a few CSS3 properties, including @import, @media & @page rules (CSS float is not supported).
- Supports most presentational HTML 4.0 attributes.
- Supports external stylesheets, either local or through http/ftp (via fopen-wrappers).
- Supports complex tables, including row & column spans, separate & collapsed border models, individual cell styling image support (gif, png (8, 24 and 32 bit with alpha channel), bmp & jpeg).

Example, create and save a PDF document from a HTML document defined directly in PHP.
<?php
include('dompdf/dompdf_config.inc.php');

$savein = 'pdfdir/';       // directory in which to save the PDF file

// the HTML content
$html = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ro">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Free Courses: https://coursesweb.net</title>
<style type="text/css">
body {
 padding:1px 22px;
 text-align:center;
}
h1 {
 margin:3px auto;
 font-size:18px;
 color:blue;
}
p {
 background:#fefeda;
 text-indent:20px;
 text-align:left;
}
a {
 border:1px dotted #01da02;
 font-size:13px;
 padding:4px;
}
</style>
<body>
 <h1>Free Courses for Web Development</h1>
 <a href="https://coursesweb.net/" title="Free Programming Courses">Free Programming Courses</a>
 <p>Put your html here, or generate it with your favourite templating system.</p>
 <img src="image.jpg" width="130" height="80" alt="Web Programming" />
</body></html>';

// uses dompdf class to create the PDF file, save it and streams the file
$dompdf = new DOMPDF();
$dompdf->load_html($html);            // Loads the HTML string
$dompdf->render();                    // Renders the HTML to PDF

$pdf = $dompdf->output();             // gets the PDF as a string
file_put_contents(($savein.'file.pdf'), $pdf);           // save the pdf file on server

$dompdf->stream('file.pdf');      // Streams the PDF to the client. Will open a download dialog by default
?>

- To see the result, click: PDF file.


Another example. The PDF document is generated on the fly by dompdf. The HTML content is loaded from an external file.
<?php
include('dompdf/dompdf_config.inc.php');

$html = file_get_contents('file.html');          // gets the HTML content as a string

// uses dompdf class to create the PDF file, and streams the file
$dompdf = new DOMPDF();
$dompdf->load_html($html);              // Loads the HTML string
$dompdf->render();                      // Renders the HTML to PDF
$dompdf->stream('file.pdf');      // Streams the PDF to the client. Will open a download dialog by default
?>

If you want to use the HTML content from an external file, is better to not use load_html_file() (because can cause error /problems due to a security enhancement implemented); load the file into a variable using the PHP function file_get_contents().

- In the archive with dompdf class you'll find more examples, and documentation (in "www" directory, accessed from server).
dompdf Web Site.

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag is used to add definition lists into a <dl> element?
<dt> <dd> <li>
<dl>
 <dt>HTML</dt>
  <dd> - Hyper Text Markup Language</dd>
  <dd> - Language for web pages</dd>
</dl>
Which CSS property can hide an element on page, letting an empty space in its place?
display position visibility
#id {
  visibility: hidden;
}
Click on the event which is triggered when the mouse clicks on an object.
onclick onmouseover onfocus
document.getElementById("id").onclick = function(){
  alert("http://CoursesWeb.net/");
}
Indicate the PHP variable that contains the contents of both $_GET, $_POST, and $_COOKIE arrays.
$_SESSION $_GET $_REQUEST
if(isset($_REQUEST["id"])) {
  echo $_REQUEST["id"];
}
dompdf

Last accessed pages

  1. jsSHA - SHA Hashes and HMAC in JavaScript (3429)
  2. iframe object (2229)
  3. Clear Canvas Context (8001)
  4. jQuery Ajax - load() method (10777)
  5. PHP getElementById and getElementsByTagName (49143)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (253)
  2. Read Excel file data in PHP - PhpExcelReader (91)
  3. The Four Agreements (77)
  4. PHP Unzipper - Extract Zip, Rar Archives (76)
  5. The Mastery of Love (66)
Chat
Chat or leave a message for the other users
Full screenInchide