in reply to Simple guestbook problem.
# replace newlines in message with brs my $msg = $input{'txtMsg'}; $msg =~ s|\r||g; $msg =~ s|\n|<br/>|g; # add Event to file print DAT "$NewID|$now_string|$input{'txtGuestName'}|$msg\n"; [download]