Visualizzo un file php con file_get_contents.

Dovrei sovrascrivere il file...

Provo così:

$file= $_POST['file'];
$testo="$_POST[testomodificato]";

$content = "$testo";
$myfile = '$file';
$handle = fopen($myfile, 'a');
fwrite($handle, $content);
fclose($handle);


ma non succede nulla...