Hey everyone!
I am look to write some information to test to a txt file. I am new to php so this probably seems easy to some!
Cheers for taking the time out to read this!
Like...
$content="content to print to file"; $fileOpen = fopen("_config.txt", "w"); fwrite($fileOpen, $content) or die("ERROR WRITING FILE"); fclose($fileOpen);