Hello. Ok, I have a script written that pulls data from mysql database and shoves it into an excel spread sheet. The spread sheet is working great and all information is there. However, the problem I have is that in the database there are a couple of text fields with data entered in them as:
blahblahblah
/n(?not sure if this is a newline or not...)
blahblah line two
and when this is pulled into the spread sheet is is inserting the first line (blahblahblah) into the approiate column, however when it hits the newline it moves the rest of the spread sheet down a row so that blahblah line two is now in the wrong row and is in the first column. Any ideas? So far i've tried running it through chop(), rtrim(), str_replace() on the newline (which is leading me to believe that it is not a newline since i've also tried running it through nl2br and then put it through strip_tags()). Any help would be greatly appreciated!!! Thanks in advance!