Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/11/2005, 16:14
beandfa
 
Fecha de Ingreso: mayo-2002
Ubicación: Toluca
Mensajes: 229
Antigüedad: 22 años
Puntos: 2
aahhh si no me equivoco se puede arreglar con esto
<?php

$filecontent="Aqui va el mensaje de texto ... ";
$downloadfile="nombre.txt";

header("Content-disposition: attachment; filename=$downloadfile");
header("Content-Type: application/force-download");
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".strlen($filecontent));
header("Pragma: no-cache");
header("Expires: 0");

?>