<?php // new file $newfile = fopen("textfile.txt", "w"); $str = "random text"; fwrite($newfile, $str); fclose($newfile); ?>