I know that \n is the switch used to start a newline in a text file. Here is the line of code I am using:
fwrite($fp, $list1[$i] .'¦'. $list2[$i] .'¦'. $list3[$i] .'¦'. $list4[$i] .'/n');
No newlines are created in the text file, instead it shows \n where the newline should be.
Any ideas?