ESH/dynamic_pdf_hrms.php
2024-10-23 18:28:06 +05:30

36 lines
562 B
PHP

<?php
///include autoloader;
//ini_set("memory_limit","96550M");
require_once 'dompdf/autoload.inc.php';
use Dompdf\Dompdf;
$dompdf = new Dompdf();
$pdfVal ='<html>
<head>
<style>
td {
font-size:12px;
text-align:center;
}
table{
border-collapse: collapse;
width: 100%;
font-size:10px;
}
<style></head>';
if($_REQUEST['htmlText'] != "")
{
$pdfVal =$pdfVal.$_REQUEST['htmlText'];
}
//echo $pdfVal;
$dompdf->loadHtml($pdfVal);
$dompdf->setPaper('A3', 'landscape');
$dompdf->render();
$dompdf->stream("salarySlip", array("Attachment" => 0));
?>