planktoscope/pipeline/write.php
2019-12-10 22:29:42 -08:00

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);
?>