Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/02/2005, 22:33
Avatar de Danger_
Danger_
 
Fecha de Ingreso: diciembre-2004
Ubicación: Queretaro, México
Mensajes: 395
Antigüedad: 20 años, 2 meses
Puntos: 0
Sabes manejar php?.... y si sabes, utiliza esto:

Código PHP:
$id "archivo.mp3";
$enlace $directorio."/".$id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace); 
Saludos !