Write File PHP

All language had function that can call in case write file to local directory if PHP use like code

$fo = fopen(’title.txt’,'w’);
fwrite($fo,’some text’);
fclose($fo);

$fo is a instance of fopen(’file name’,'mode write or read’).

Leave a Reply