Hello everybody!!!
I have this script on one free PHP-suppoting server:
<html>
<body>
<?php
$file = fopen("lidn.txt","a");
fclose($file);
?>
</body>
</html>
it does create the lidn.txt file, but it's empty.
I want to create a file and to write something into it, for example this line "Cats chase mice", how can I do it?