ESH/pdf_template.php

23 lines
370 B
PHP
Raw Normal View History

2024-10-23 18:28:06 +05:30
<?php
require_once('html2fpdf.php');
// activate Output-Buffer:
ob_start();
?>
<html><head>
</head>
<body>
</body>
</html>
<?php
// Output-Buffer in variable:
$html=ob_get_contents();
// delete Output-Buffer
ob_end_clean();
$pdf = new HTML2FPDF();
$pdf->DisplayPreferences('HideWindowUI');
$pdf->AddPage();
$pdf->WriteHTML($html);
6/7;
$pdf->Output('doc.pdf','I');
?>