26 lines
477 B
PHP
26 lines
477 B
PHP
<?php
|
|
//header("Content-type: application/pdf");
|
|
//require_once("html2fpdf.php");
|
|
//include('top.php');
|
|
include('pdf_header_gatepass.php');
|
|
//include('pdf_header_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['reqHtmlText'];
|
|
?>
|
|
</body>
|
|
</html>
|
|
<?php
|
|
include('pdf_footer.php');
|
|
?>
|