Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created February 7, 2013 17:53
Show Gist options
  • Save fdaciuk/4732759 to your computer and use it in GitHub Desktop.
Save fdaciuk/4732759 to your computer and use it in GitHub Desktop.
<?php
define('MPDF_PATH', 'class/mpdf/');
include(MPDF_PATH.'mpdf.php');
$mpdf=new mPDF();
$mpdf->WriteHTML('Hello World');
$mpdf->Output();
exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment