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). Running php 4.2.2 on W2K and IIS Any suggestions? Ad Brouwer -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php