<?php $myfile = fopen("file_name.txt", "w") or die("Unable to open file!"); $txt = "Hello world "; fwrite($myfile, $txt); $txt = " Php. "; fwrite($myfile, $txt); fclose($myfile); ?>