ésto es lo que tengo...
Código PHP:
<?php
$url = $_SERVER['SCRIPT_FILENAME'];
$rutaserver = dirname($url);
$sql = "SELECT * FROM rutas WHERE nombre='".$_GET['nombre']."'";
$rs = mysql_query($sql);
$nombre=mysql_result($rs,"nombre");
$enlace = $rutaserver.'/'.$nombre;
header ("Content-Disposition: attachment; filename=".$nombre."nombre");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
q dices??
salu2