7 lines
142 B
PHP
7 lines
142 B
PHP
<?php
|
|
$txt = $_REQUEST["txt"];
|
|
$myfile = fopen("newfile.txt", "w") or die("Unable to open file!");
|
|
fwrite($myfile, $txt);
|
|
fclose($myfile);
|
|
?>
|