if there is an ex file (news.txt)
and I need php to read my words in this file only once a day
every day php reads only one line →
I am writing this code, but it does not work →> any help
$wordfile = "words.txt";
$open = fopen($wordfile, "r");
$read = fread($open, filesize($wordfile));
fclose($wordfile);
$array = explode("\n",$read);
$date = date("z");
while ($date++){
echo $array;
}
source
share