PDF is format of file to share .Here is code for converting html to PDF using mpdf library (PHP library).
//include library path
include('mpdf/mpdf.php');
$mpdf=new mPDF('c','A4','','' , 0 , 0 , 0 , 0 , 0 , 0);
$mpdf->SetDisplayMode('fullpage');
$mpdf->list_indent_first_level = 0;
$mpdf->WriteHTML('<html><head></head><body><h2>Welecome to HTML to PDF </h2></body></html>');
//save the file put which location you need folder/filename
$mpdf->Output('test.pdf', 'F');
You can download the library from GitHub. Extract it and paste into your (project folder).
Comments
Post a Comment