estoy haciendo un trabajo y necesito una ayudita, espero me puedan colaborar. necesito descargar un archivo texto desde php, lo cual lo hago con este codigo.
Código PHP:
$fichero = "./datos.txt";
header("Content-Description: File Transfer");
header("Content-Disposition: filename=".basename($fichero) );
header("Content-Length: ".filesize($fichero));
header("Content-Type: application/force-download");
@readfile($fichero);
es esto posible?? estare atento a cualquier sugerencia.
muchas gracias!!!!