ok, i decided to use file_get_contents and explode them, but i dont know what the carrage return is for PHP, so that i can use that to seperate the lines.
Three people in a row suggested file(). Clearly that is a very strong suggestion.
As for carriage return, that would be "\n", but whether to use carriage return, line feed, or carriage return + line feed depends more on the file's end of line encoding than PHP. Still, if I remember correctly, just using "\n" typically works. Nonetheless, just use file().