Check(); // retrieve the document $r=ExecSql($cn,"select md_id,md_lob,md_filename,md_mimetype from document_modele where md_id=".$_REQUEST['md_id']); if ( pg_num_rows($r) == 0 ) { echo_error("Invalid Document"); exit; } $row=pg_fetch_array($r,0); StartSql($cn); $tmp=tempnam($_ENV['TMP'],'document_'); pg_lo_export($cn,$row['md_lob'],$tmp); ini_set('zlib.output_compression','Off'); header("Pragma: public"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: must-revalidate"); header('Content-type: '.$row['md_mimetype']); header('Content-Disposition: attachment;filename="'.$row['md_filename'].'"',FALSE); header("Accept-Ranges: bytes"); $file=fopen($tmp,'r'); while ( !feof ($file) ) echo fread($file,8192); fclose($file); unlink ($tmp); Commit($cn);