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

23 lines
383 B
PHP

<?php
header("Content-type: application/pdf");
require_once("html2fpdf_reverse.php");
// activate Output-Buffer:
ob_start();
?>
<html>
<link href="includes/css-js/admin.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {font-size: small}
-->
</style>
<body>
<?php
echo $_REQUEST['htmlText'];
?>
</body>
</html>
<?php
include('pdf_footer.php');
?>