
16/06/2004, 18:39
|
 | | | Fecha de Ingreso: octubre-2003 Ubicación: m é x i c o
Mensajes: 676
Antigüedad: 21 años, 5 meses Puntos: 4 | |
tal ver podria funcionar esto:
descarga.php
<?
$fp = fopen("noticias.php", "rb");
$contenido = fread($fp, filesize("noticias.php"));
fclose($fp);
header("Content-type: application/zip");
header("Content-Disposition: ; filename=\"noticias.htm\"");
$contenido
?>
esta medio loco pero podrias intentarlo |