Answers for "php upload file and create a txt file"

PHP
3

php write to file

$myFile = "testFile.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "Bobby Bopper\n";
fwrite($fh, $stringData);
$stringData = "Tracy Tanner\n";
fwrite($fh, $stringData);
fclose($fh);
Posted by: Guest on February-24-2020

Browse Popular Code Answers by Language