Ive got a flash movie that writes into a txt file... its a multiline lext box in the flash movie, so it can contain new lines by presing enter. i need to store this data on ONE line in teh txt file. how can i make this string all one line?
cheers
$new = str_replace("\n","",$string);
// if linebreak is \n
cheers man.