I am using the PDFlib+PDI library with PHP 4.3.8.
My problem is with opening PDF documents.
When using the following code:
$pdf = pdf_new();
$pdi = pdf_open_pdi($pdf, "/pdf/NEW_EMP_INFO_SHEET.pdf", "", 0);
echo $pdi;
it returns a "0", meaning that it was unable to open the document. The amount of documentation/examples for the "pdf_open_pdi" function is disappointing - there are virtually no examples of anyone using this function except for in the php manual and in other forums where people are asking the exact same question I am.
CAN ANYONE SHED SOME LIGHT ON THIS PROBLEM? HAS ANYONE BEEN ABLE TO GET THIS TO WORK?