I want to get a printable letter format like word document for an application.
Suppose I want say "Your increment is Rs...../= for this year".
How Can I add that document to a link of web page using php.I use wamp5_1.6.5.
I enable the pdf function in the above server and ran the following codes as a test run.
<?php
$p = PDF_new();
/* open new PDF file; insert a file name to create the PDF on disk */
if (PDF_begin_document($p, "", "") == 0) {
die("Error: " . PDF_get_errmsg($p));
}
Then I ran it on the IE browser.It gave the following error message.
**********************************************************
Fata error: Call undefined function PDF_begin_document() inC:\wamp\www\NEW\hello.php on line 5.
**********************************************************
Can you help me to slove this matter.Can I use "cpdf" or "fpdf".
Bookmarks