Просмотр файла Notepad/ok.php

Размер файла: 390B
<?php

include "diz.php";
include "name.php";

$index = "<a href='index.php'>В блокнот</a><img src=image/vhod.gif>";
$edit = $_POST['edit'];
$file = "text.php";
$write = fopen($file,"w+");

fwrite($write,stripslashes($edit));
fclose($write);
echo "<br><center>Запись сохранена!!!<img src=image/ok.gif></center><br>";
echo "<center>$index</center>";

include "copy.php";

?>