Hi,
i want to write to strings to a file, but every string in a new line. I wrote:
$fd = fopen("any_file.txt","w+");
$a = "Any_String";
$b = "Any_String";
fwrite ($fd, $a);
fwrite ($fd, $b);
fclose ($fd);
But it does not work.
I know you can help me - gerus