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