Ciao,

$testo = 'galleria/testo02.txt';
$file = fopen($testo, 'w');
fwrite($file, stripslashes($testo02));

con questo sopra scrivo sul file testo02.txt e va bene

include ("galleria/testo02.txt");
$testo = 'galleria/testo02.txt';
$file = fopen($testo, 'r');
$leggi = fread ($file);
echo "
<form method=\"post\" action=\"$PHP_SELF?id=06bis\" enctype=\"multipart/form-data\">
<H4>Testo Galleria 02</H4>
<TEXTAREA ROWS=\"5\" COLS=\"35\" NAME=\"testo02\" ONKEYUP=\"conta(this.form)\">$leggi</TEXTAREA>
ecc . . .

con questo sopra leggo file testo02.txt e non va

il server risponde
Warning: Wrong parameter count for fread() in /var/www/www.marthasand.it/httpdocs/login/protetta.php on line 217

ho provato in diversi modi ma non riesco, cosa devo fare?

Grazie.