Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/09/2006, 18:31
fjchavez
 
Fecha de Ingreso: julio-2006
Mensajes: 114
Antigüedad: 17 años, 10 meses
Puntos: 0
mira el archivo es este:

Código PHP:
<?php
$carpeta 
="descargas";
$id $_GET['id'];
$enlace $carpeta."/".$id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
como hago lo que me dices???