I am writing to a file via a for loop. at the end of each entry, I have a \n character, but this is still not creating a new line in the text file.. here is a snipit of code...
fwrite("newfile.txt", $string[$x]."\n");
i've also tried \r, but that doesn't work either.. any thoughts?
blue