in reply to Another Simple Message Board

I believe that
open(FH,">>message.txt")
will only make your filehandle available for appending to the end of a file. Changing it to "+>>message.txt", will make it available for reading as well. I don't know that your seek is of any use, or why it is there (been a long time since I have used it and so i might be mistaken).

apart from that:

$value =~ s/+/ /;
should be
$value =~ s/\+/ /;
as + is special in a regular expression.

Update:changed the second bit (i.e. s/\+~/=~/; Thanks Chady++

-enlil