ok, well first off i have a form text area and i have it subbmitted into php...now, i would like for all the line breaks to be gone, so that the whole thing can be in one line...
for example:
i put in:
i want
a dog
for my
birthday
and i want it to come out:
i want a dog for my birthday
can anybody help...
ive tried:
str_replace("\n", "", $string);
but it doesnt work...
help me
thanks...