Ad Brouwer wrote:
> Hi all,
>
> When submitting a form to my php-script, I get the error:
> Could not open fdf document: test.fdf
>
> this is my script:
> <?php
>  $fdffp = fopen("test.fdf", "w");
>  fwrite($fdffp, $HTTP_FDF_DATA, strlen($HTTP_FDF_DATA));
>  fclose($fdffp);
>
>  $fdf = fdf_open("test.fdf");
>  $txtNaam = fdf_get_value($fdf, "txtNaam");
>  echo "Het txtNaam veld heeft de waarde '<B>$txtNaam</B>'<BR>";
>  fdf_close($fdf);
>>
>
> The file test.fdf is created correctly (first three code-lines).

Have a look at
http://bugs.php.net/?id=14877

Christoph




-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to