Delete write.php

This commit is contained in:
tpollina 2020-01-15 15:42:06 +01:00 committed by GitHub
parent 7cec6670be
commit 7db59eef89
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +0,0 @@
<?php
$txt = $_REQUEST["txt"];
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
fwrite($myfile, $txt);
fclose($myfile);
?>