$myFile = "FAILAS.txt"; $fh = fopen($myFile, 'w') or die("can't open file"); $stringData = $_POST["TEKSTAS"]; fwrite($fh, $stringData); fclose($fh);