dellamir
Posts: 6
|
| Posted: 11/04/2008, 12:28 AM |
|
new_page1.php >>
<?php
ob_start();
define("RelativePath", ".");
define("PathToCurrentPage", "/");
define("FileName", "reports1.php");
include_once(RelativePath . "/Common.php");
include_once(RelativePath . "/Template.php");
include_once(RelativePath . "/Sorter.php");
include_once(RelativePath . "/Navigator.php");
//End Include Common Files
require_once(dirname(__FILE__).'/html2pdf/html2pdf.class.php');
global $content;
global $pdf;
...
new_page1_events.php >>
Page_BeforeOutput
{
global $content;
global $pdf;
$content = ob_get_clean();
$pdf = new HTML2PDF('P','A4', 'en');
$pdf->WriteHTML($content, isset($_GET['vuehtml']));
$pdf->Output();
}
but the build pdf is an empty page.
help me pleaze
|