uhmm...prova a creare un file con qst:
Codice PHP:
<?php
header
("Content-type: text/plain"); 
$basename="file.txt";
$lineszfilesize$basename)+1;
$fpfopen$basename'r' );
$content chunk_split(base64_encode(fread$fp$linesz)));
fclose($fp);
echo 
$content;
?>