File "descarga.php.bak"
Full Path: C:/wamp64/www/APPSST/matriz/descarga.php.bak
File size: 556 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// Ruta del archivo Excel
$archivo = 'archivos/mi_archivo.xlsx'; // Asegúrate de que la ruta sea correcta
// Verificar si el archivo existe
if (file_exists($archivo)) {
// Configurar encabezados para la descarga
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment; filename="' . basename($archivo) . '"');
header('Content-Length: ' . filesize($archivo));
readfile($archivo);
exit;
} else {
echo "El archivo no existe.";
}
?>