here's the page im trying to fix. how do i get rid of the spaces in between lines? im copy and pasting from a file that doesn't have the spaces between lines and inputting into a textbox, saved in the db as 'boxscore' TEXT NOT NULL;
What do you mean spaces between lines? Do you mean there is a space at the end of each line that you want to get rid of? If so, you could try str_replace()
$text = str_replace("\n ", "\n", $text);
Cgraz