Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/09/2005, 10:19
Avatar de isaacluz
isaacluz
 
Fecha de Ingreso: marzo-2005
Mensajes: 180
Antigüedad: 19 años, 1 mes
Puntos: 0
vÁ otro, ver si te sirve.. yo uso esto....


Código:
// ESTA PRIMER VARIABLE LA PUEDES MANDAR APARTE
$Archivo="mi_video.mpg";
// AQUI LE PONES LA RUTA DEL ARCHIVO
$ruta = "ruta/de/la/descarga/";
// Y LO DEMAS YA GENERA LA DESCARGA
$download_size = filesize($ruta.$Archivo);
$filename = basename($ruta.$Archivo);
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=$filename");
header("Accept-Ranges: bytes");
header("Content-Length: $download_size");
@readfile($ruta.$Archivo);
die;