Answers for "How to read and append text file in php"

PHP
2

appending txt file from php

$log_content="This line is logged on 2020-08-14 09:55:00";
$myfile = fopen("log.txt", "a") or die("Unable to open file!");
fwrite($myfile, $log_content);
fclose($myfile);
Posted by: Guest on August-14-2020

Code answers related to "How to read and append text file in php"

Browse Popular Code Answers by Language