Hi,
I am making a counter. So I need to write and read from file in oder to change the current number of visitors. I tryed to
do like this:
$inputString = "some string";
$fileHandler = fopen("counter.txt","w");
fwrite ($fileHandler, $inputString);
fclose ($fileHandler);
But it doesn't work. Something is wrong.
The operating system is UNIX.
Thank You.
By the way, Merry Christmas 🙂!