When I export using PHPMyAdmin it automatically adds \n where there are line breaks. How do I stop it from doing this? Thanks.
\n is for new line...some times when you convert from unix db to a winders db, it may also tag on a ^M as well. You can parse your data within your query and perform a string replace for the \n with a nothing string.