TRan Nguyen Vu - 2007-04-01 10:57:52
When I run the test source, I get a pdf file that content is only "No website is configure at this address".
My example is:
<?php
require('html_to_pdf.inc.php');
$htmltopdf = new HTML_TO_PDF();
$htmltopdf->saveFile("abc.pdf");
$htmltopdf->downloadFile("abc.pdf");
$result = $htmltopdf->convertHTML("<b>MY TEST</b>");
//$result = $htmltopdf->convertURL("http://test.ultraglobal.info/govazo/");
if($result==false)
echo $htmltopdf->error();
?>
Please advise? How to work through this issue?