part of the array has its own line... I believe I have done it before I have
just completely forgotten how to!
I've tried using the "\n" and still doesn't work...
Here is my code:
Code: Select all
$xї0] = "Hello";
$xї1] = "waldo";
$x = implode("\n", $x);
$fp = fopen("x.txt", "wt");
fwrite($fp, $x);
fclose($fp);