Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/05/2010, 03:03
Davidcb
 
Fecha de Ingreso: marzo-2006
Mensajes: 44
Antigüedad: 18 años, 1 mes
Puntos: 4
Respuesta: Ayuda con descarga de archivos

Tendrías que hacer algo así:

Código PHP:
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$archivo[0]\"\n");
$fp fopen($archivo[0], "r");
fpassthru($fp);