getRecordValues($id, 'section'); $nombre_fichero = $FILE->filename['fichero']; $reg = NULL; if ( $nombre_fichero && file_exists($_path . $nombre_fichero ) ) { $fh = @fopen($_path . $nombre_fichero, "r"); if ( $fh ) { $filesize = filesize($_path . $nombre_fichero); header('Content-Type: application/force-download'); header('Expires: ' . gmdate('D, d M Y H:i:s') . ' GMT'); header('Content-Disposition: attachment; filename="' . $nombre_fichero . '"'); header('Content-Length: ' . $filesize); header('Pragma: no-cache'); while ( $line = fread($fh, 1024) ) { echo $line; } fclose($fh); return true; } } else { echo $_path . $nombre_fichero; } return false; ?>