can anyone help with this...
i am using the obook guestbook script from http://obsessed.org
Problem is that when you enter a message which contains line breaks and submit it - the message is broken up into several sections and each paragraph is inserted as a separate message.
can anyone tell me if there is a simple piece of code i can enter to prevent this happening?
thx
Don't know of anything "simple" - but you might try something like this:
$output=ereg_replace("\n", '', $input); $output=ereg_replace("\r", '', $output);
against the input stream and see what that does for you.
-Ben
thanks so much,
with a little help from my bro that worked a treat 🙂
d.