HTML
|
|
|
|
<?PHP // $file = fopen("abc.pdf", "y");
$dokument = pdf_open($file); //first opening a document $test = pdf_begin_page($dokument,200, 100); $text_1 = "here write what u want n to appear here!"; $text_2 = "General information"; pdf_add_note ($dokument, 100, 100, 180, 40, $text_1, $text_2, "help", 0); $text_1 = "here is the second text. write what u want to write";
$text_2 = "General information"; pdf_add_note ($dokument, 10, 10, 180, 40, $text_1, $text_2, "help", 1); pdf_end_page($dokument); pdf_close($dokument); fclose($file); ?>
|
|
|
Usage Example
|
|
|
Rate This Script
|
|
|
|