i did some investigation myself, and I think I found the right script for this, but i don't know how to combine it with the Shoutbox.php...
http://groups.google.com/groups?hl=n...com%26rnum%3D1
This is the script that should work:
PHP Code:
$foo = "This is
a string with
line breaks";
echo $string;
$bar = preg_replace ("/(\r?\n)/", "", $foo);
echo "\n\n";
echo $bar;
But how do i combine this with the shoutbox script:
PHP Code:
$shout_text = bbcodeparse($shout_text);
Do i need to make a substring?
If someone is experienced with php, please give me a hand...