How to create and write text to text file in PHP

2 Answers

0 votes
$f = fopen("e:\datefile.txt", "w") or die("Error open file!");
fwrite($f, "PHP");
fwrite($f, " Programming");
fclose($f);

/*
run:

PHP Programming

*/

 



answered Dec 3, 2015 by avibootz
edited Dec 5, 2015 by avibootz
0 votes
$f = fopen("e:/datefile.txt", "w") or die("Error open file!");
$txt = "PHP";
fwrite($f, $txt);
$txt = " Programming";
fwrite($f, $txt);
fclose($f);

/*
run:

PHP Programming

*/

 



answered Dec 3, 2015 by avibootz
edited Dec 5, 2015 by avibootz
...