Php Programming Code Examples
Php > Forms Data Format Code Examples
Attached File
Attached File
<?php
$fdf = fdf_open_string($HTTP_FDF_DATA);
$data = fdf_get_attachment($fdf, "filename", "/tmpdir");
echo "The uploaded file is stored in $data[path]";
?>