necesito hacer que se baje un fichero de texto al cliente sin abrirse en el navegador web. Uso las siguientes cabeceras
$nom_fich="auditoria.txt";
header("Content-Disposition: attachment; filename=$nom_fich");
header("Content-length: ", filesize($nom_fich));
header("Content-Type: application/octet-stream; name=$nom_fich");
esta en el mismo directorio, pero me baja vacio, aun cuando el fichero esta ok
¿Alguien me puede ayudar?
gracias de antemano