Hi,
##############################################################################
Strips all entries of HTML and PHP tags.
So people can't mess with your guestbook.
0 = No, do not strip tags 1 = Yes, strip tags
##############################################################################*/
Entfernt alle html un php tags.
die leude koennen dann keine scheisse mehr bauen.
$strip = 1;
bei $strip=1; wird gestripped ;-) bei 0 nicht.
$msg = wordwrap( $msg, 24, " ", 1);
http://www.phpcenter.de/wordwrap
$msg = eregi_replace(chr(13).chr(10),"<br>",$msg);
ersetzt "\n" und "\r" durch <br>
die php function nl2br() tut selbiges.
Jan
--