[PHP-DEV] PHP 4.0 Bug #5547: Fatal error: Call to undefined function: fdf_open() From: alepapp <email protected>
Date: 07/13/00

From: alepapp <email protected>
Operating system: Windows NT
PHP version: 4.0.0
PHP Bug Type: Scripting Engine problem
Bug description: Fatal error: Call to undefined function: fdf_open()

 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>

<HEAD>

    <TITLE>Insert Your Title</TITLE>

</HEAD>
 
<BODY link="#0000FF" vlink="#800080" alink="#FF0000">
<?php
 // Open temp file and evaluate data
 // The pdf form contained several input text fields with the names
 // volume, date, comment, publisher, preparer, and two checkboxes
 // show_publisher and show_preparer.
 $fdf = fdf_open("appo.fdf");
 $volume = fdf_get_value($fdf, "nomeFondo");
 echo "Frase1: '<B>$volume</B>'<BR>";
 fdf_close($fdf); ?>

</BODY>
</HTML>

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>