0){ $row = mysql_fetch_array($res); $id = $row['id']; $fila = $row['fila']; $file_server_path = $DocPath.$fila; $file_download_name = $fila; $download_size = filesize($file_server_path); header("Content-type: application/x-download"); header("Content-Disposition: attachment; filename=$file_download_name;"); header("Accept-Ranges: bytes"); header("Content-Length: $download_size"); @readfile($file_server_path); } ?>