Not in the database records.
I'm making a concatenated string and sending each string out to a file using
$fp = fopen("/home/httpd/html/web/ssa/sql/output/local_info.txt", "w");
and then
$intro="Hello world\n"; (for example, although my string is a larger)
then;
fwrite( $fp, $intro);
fclose( $fp );
Looking at this again, it must be the \n that's causing it - but what can I use instead?