Is it possible to make a new line in a text file, while writing using fwrite()? I'm planning to write values to a file, and then retrieve them using file() to store them in an array, but I can't figure out how to get a new line. I've tried concatonating a "\n" onto the backend of the string to be written, but, that just adds a \n to the end of the line. Is there a way to use an ASCII value or something?