programma in esecuzione :








fwrite.php

<?php $testo = "ciao, questa é una prova"; echo "<p>$testo</p>"; $nomefile = "prova.txt"; $fileout = fopen ($nomefile, "w"); fwrite ($fileout, $testo); fclose ($filein); ?>