Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/04/2008, 15:32
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Problema al enviar parámetros de ASP a PHP

Prueba así:
Código PHP:
<?php
$Id 
$_GET['Id'];
$AuxPath $_GET['AuxPath'];

$enlace $AuxPath.$Id;
header ("Content-Disposition: attachment; filename=".$Id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
Saludos.